Skip to content

Commit 76b92be

Browse files
committed
Update to jQuery 3.7.1
Only the latest is the greatest.
1 parent 0f97ab1 commit 76b92be

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

Sources/jQuery/ResourceMap.swift

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// Generated on Sun Sep 8 15:27:18 CEST 2024
2+
//
3+
4+
import struct Foundation.Data
5+
6+
public extension jQuery {
7+
8+
/**
9+
* Lookup a jQuery resource. The returned Data
10+
* contains the gzip compressed resource.
11+
*
12+
* Available resource names:
13+
*
14+
* - "jquery.min.js"
15+
*
16+
*/
17+
static func resourceNamed(_ name: String) -> Data? {
18+
switch name {
19+
20+
case "jquery.min.js":
21+
return data_jquery_min_js
22+
23+
default: return nil
24+
}
25+
}
26+
}

0 commit comments

Comments
 (0)