assign-gingerly 0.0.77 โ 0.0.78
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/DX/emojis.ts +3 -3
- package/package.json +1 -1
package/DX/emojis.ts
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
* | ๐ท๏ธ | builtIns.microDataJoin |
|
|
23
23
|
* | ๐ | builtIns.manageTemplateList |
|
|
24
24
|
*/
|
|
25
|
-
export const builtInEmoji
|
|
25
|
+
export const builtInEmoji= {
|
|
26
26
|
'๐ฆ': 'builtIns.lazyLoad',
|
|
27
27
|
'๐๏ธ': 'builtIns.lazyLoadSwitch',
|
|
28
28
|
'๐': 'builtIns.join',
|
|
@@ -31,7 +31,7 @@ export const builtInEmoji: Record<string, string> = {
|
|
|
31
31
|
'๐': 'builtIns.rangeSelector',
|
|
32
32
|
};
|
|
33
33
|
|
|
34
|
-
export const akaMethods
|
|
34
|
+
export const akaMethods = {
|
|
35
35
|
'๐': 'querySelector',
|
|
36
36
|
'๐งบ': 'querySelectorAll',
|
|
37
37
|
'+': 'add',
|
|
@@ -53,7 +53,7 @@ export const akaMethods: Record<string, string> = {
|
|
|
53
53
|
//'๐งฉ': 'includes'
|
|
54
54
|
};
|
|
55
55
|
|
|
56
|
-
export const aka
|
|
56
|
+
export const aka = {
|
|
57
57
|
'ยฉ๏ธ': 'content?.cloneNode?.true',
|
|
58
58
|
//'๐': 'clone?.querySelector'
|
|
59
59
|
// textContent is a property, not a method โ aliasing it via akaMethods
|
package/package.json
CHANGED