@dxtmisha/functional-basic 0.1.0
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/LICENSE +21 -0
- package/README.md +829 -0
- package/dist/classes/Api.d.ts +161 -0
- package/dist/classes/ApiDefault.d.ts +43 -0
- package/dist/classes/ApiHeaders.d.ts +23 -0
- package/dist/classes/ApiPreparation.d.ts +56 -0
- package/dist/classes/ApiResponse.d.ts +111 -0
- package/dist/classes/ApiStatus.d.ts +89 -0
- package/dist/classes/BroadcastMessage.d.ts +36 -0
- package/dist/classes/Cache.d.ts +34 -0
- package/dist/classes/CacheItem.d.ts +55 -0
- package/dist/classes/CacheStatic.d.ts +17 -0
- package/dist/classes/Cookie.d.ts +58 -0
- package/dist/classes/CookieBlock.d.ts +22 -0
- package/dist/classes/DataStorage.d.ts +82 -0
- package/dist/classes/Datetime.d.ts +482 -0
- package/dist/classes/EventItem.d.ts +160 -0
- package/dist/classes/Geo.d.ts +168 -0
- package/dist/classes/GeoFlag.d.ts +79 -0
- package/dist/classes/GeoIntl.d.ts +262 -0
- package/dist/classes/GeoPhone.d.ts +107 -0
- package/dist/classes/Global.d.ts +21 -0
- package/dist/classes/Hash.d.ts +59 -0
- package/dist/classes/Icons.d.ts +90 -0
- package/dist/classes/Loading.d.ts +49 -0
- package/dist/classes/Meta.d.ts +168 -0
- package/dist/classes/MetaManager.d.ts +103 -0
- package/dist/classes/MetaOg.d.ts +101 -0
- package/dist/classes/MetaTwitter.d.ts +101 -0
- package/dist/classes/ScrollbarWidth.d.ts +33 -0
- package/dist/classes/Translate.d.ts +116 -0
- package/dist/classes/__tests__/Api.test.d.ts +4 -0
- package/dist/classes/__tests__/ApiDefault.test.d.ts +1 -0
- package/dist/classes/__tests__/ApiHeaders.test.d.ts +1 -0
- package/dist/classes/__tests__/ApiPreparation.test.d.ts +1 -0
- package/dist/classes/__tests__/ApiResponse.test.d.ts +4 -0
- package/dist/classes/__tests__/ApiStatus.test.d.ts +1 -0
- package/dist/classes/__tests__/Meta.test.d.ts +4 -0
- package/dist/classes/__tests__/MetaManager.test.d.ts +4 -0
- package/dist/classes/__tests__/MetaOg.test.d.ts +4 -0
- package/dist/classes/__tests__/MetaTwitter.test.d.ts +4 -0
- package/dist/functions/anyToString.d.ts +7 -0
- package/dist/functions/applyTemplate.d.ts +10 -0
- package/dist/functions/arrFill.d.ts +8 -0
- package/dist/functions/copyObject.d.ts +8 -0
- package/dist/functions/createElement.d.ts +13 -0
- package/dist/functions/domQuerySelector.d.ts +7 -0
- package/dist/functions/domQuerySelectorAll.d.ts +7 -0
- package/dist/functions/encodeAttribute.d.ts +7 -0
- package/dist/functions/eventStopPropagation.d.ts +7 -0
- package/dist/functions/executeFunction.d.ts +8 -0
- package/dist/functions/executePromise.d.ts +7 -0
- package/dist/functions/forEach.d.ts +11 -0
- package/dist/functions/frame.d.ts +16 -0
- package/dist/functions/getAttributes.d.ts +8 -0
- package/dist/functions/getClipboardData.d.ts +11 -0
- package/dist/functions/getColumn.d.ts +10 -0
- package/dist/functions/getElement.d.ts +8 -0
- package/dist/functions/getElementId.d.ts +9 -0
- package/dist/functions/getElementItem.d.ts +11 -0
- package/dist/functions/getElementOrWindow.d.ts +8 -0
- package/dist/functions/getExp.d.ts +13 -0
- package/dist/functions/getItemByPath.d.ts +8 -0
- package/dist/functions/getKey.d.ts +7 -0
- package/dist/functions/getLengthOfAllArray.d.ts +8 -0
- package/dist/functions/getMaxLengthAllArray.d.ts +8 -0
- package/dist/functions/getMinLengthAllArray.d.ts +8 -0
- package/dist/functions/getMouseClient.d.ts +8 -0
- package/dist/functions/getMouseClientX.d.ts +7 -0
- package/dist/functions/getMouseClientY.d.ts +7 -0
- package/dist/functions/getObjectByKeys.d.ts +8 -0
- package/dist/functions/getObjectNoUndefined.d.ts +8 -0
- package/dist/functions/getObjectOrNone.d.ts +7 -0
- package/dist/functions/getRandomText.d.ts +11 -0
- package/dist/functions/getRequestString.d.ts +9 -0
- package/dist/functions/getStepPercent.d.ts +8 -0
- package/dist/functions/getStepValue.d.ts +8 -0
- package/dist/functions/goScroll.d.ts +10 -0
- package/dist/functions/inArray.d.ts +8 -0
- package/dist/functions/initScrollbarOffset.d.ts +6 -0
- package/dist/functions/intersectKey.d.ts +8 -0
- package/dist/functions/isArray.d.ts +7 -0
- package/dist/functions/isDifferent.d.ts +9 -0
- package/dist/functions/isDomRuntime.d.ts +10 -0
- package/dist/functions/isFilled.d.ts +9 -0
- package/dist/functions/isFloat.d.ts +7 -0
- package/dist/functions/isFunction.d.ts +8 -0
- package/dist/functions/isInDom.d.ts +8 -0
- package/dist/functions/isIntegerBetween.d.ts +8 -0
- package/dist/functions/isNull.d.ts +8 -0
- package/dist/functions/isNumber.d.ts +7 -0
- package/dist/functions/isObject.d.ts +7 -0
- package/dist/functions/isObjectNotArray.d.ts +7 -0
- package/dist/functions/isSelected.d.ts +8 -0
- package/dist/functions/isSelectedByList.d.ts +8 -0
- package/dist/functions/isString.d.ts +7 -0
- package/dist/functions/isWindow.d.ts +7 -0
- package/dist/functions/random.d.ts +8 -0
- package/dist/functions/replaceRecursive.d.ts +10 -0
- package/dist/functions/replaceTemplate.d.ts +9 -0
- package/dist/functions/secondToTime.d.ts +7 -0
- package/dist/functions/setElementItem.d.ts +10 -0
- package/dist/functions/setValues.d.ts +17 -0
- package/dist/functions/splice.d.ts +12 -0
- package/dist/functions/strFill.d.ts +8 -0
- package/dist/functions/toArray.d.ts +17 -0
- package/dist/functions/toCamelCase.d.ts +7 -0
- package/dist/functions/toCamelCaseFirst.d.ts +7 -0
- package/dist/functions/toDate.d.ts +7 -0
- package/dist/functions/toKebabCase.d.ts +15 -0
- package/dist/functions/toNumber.d.ts +8 -0
- package/dist/functions/toNumberByMax.d.ts +9 -0
- package/dist/functions/toPercent.d.ts +8 -0
- package/dist/functions/toPercentBy100.d.ts +8 -0
- package/dist/functions/transformation.d.ts +21 -0
- package/dist/functions/uniqueArray.d.ts +7 -0
- package/dist/functions/writeClipboardData.d.ts +7 -0
- package/dist/library.d.ts +109 -0
- package/dist/library.js +4916 -0
- package/dist/types/apiTypes.d.ts +116 -0
- package/dist/types/basicTypes.d.ts +126 -0
- package/dist/types/geoTypes.d.ts +86 -0
- package/dist/types/metaTypes.d.ts +584 -0
- package/package.json +68 -0
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
export * from './classes/Api';
|
|
2
|
+
export * from './classes/ApiDefault';
|
|
3
|
+
export * from './classes/ApiHeaders';
|
|
4
|
+
export * from './classes/ApiPreparation';
|
|
5
|
+
export * from './classes/ApiResponse';
|
|
6
|
+
export * from './classes/ApiStatus';
|
|
7
|
+
export * from './classes/BroadcastMessage';
|
|
8
|
+
export * from './classes/Cache';
|
|
9
|
+
export * from './classes/CacheItem';
|
|
10
|
+
export * from './classes/CacheStatic';
|
|
11
|
+
export * from './classes/Cookie';
|
|
12
|
+
export * from './classes/CookieBlock';
|
|
13
|
+
export * from './classes/DataStorage';
|
|
14
|
+
export * from './classes/Datetime';
|
|
15
|
+
export * from './classes/EventItem';
|
|
16
|
+
export * from './classes/Geo';
|
|
17
|
+
export * from './classes/GeoFlag';
|
|
18
|
+
export * from './classes/GeoIntl';
|
|
19
|
+
export * from './classes/GeoPhone';
|
|
20
|
+
export * from './classes/Global';
|
|
21
|
+
export * from './classes/Hash';
|
|
22
|
+
export * from './classes/Icons';
|
|
23
|
+
export * from './classes/Loading';
|
|
24
|
+
export * from './classes/Meta';
|
|
25
|
+
export * from './classes/MetaManager';
|
|
26
|
+
export * from './classes/MetaOg';
|
|
27
|
+
export * from './classes/MetaTwitter';
|
|
28
|
+
export * from './classes/ScrollbarWidth';
|
|
29
|
+
export * from './classes/Translate';
|
|
30
|
+
export * from './functions/anyToString';
|
|
31
|
+
export * from './functions/applyTemplate';
|
|
32
|
+
export * from './functions/arrFill';
|
|
33
|
+
export * from './functions/copyObject';
|
|
34
|
+
export * from './functions/createElement';
|
|
35
|
+
export * from './functions/domQuerySelector';
|
|
36
|
+
export * from './functions/domQuerySelectorAll';
|
|
37
|
+
export * from './functions/encodeAttribute';
|
|
38
|
+
export * from './functions/eventStopPropagation';
|
|
39
|
+
export * from './functions/executeFunction';
|
|
40
|
+
export * from './functions/executePromise';
|
|
41
|
+
export * from './functions/forEach';
|
|
42
|
+
export * from './functions/frame';
|
|
43
|
+
export * from './functions/getAttributes';
|
|
44
|
+
export * from './functions/getClipboardData';
|
|
45
|
+
export * from './functions/getColumn';
|
|
46
|
+
export * from './functions/getElement';
|
|
47
|
+
export * from './functions/getElementId';
|
|
48
|
+
export * from './functions/getElementItem';
|
|
49
|
+
export * from './functions/getElementOrWindow';
|
|
50
|
+
export * from './functions/getExp';
|
|
51
|
+
export * from './functions/getItemByPath';
|
|
52
|
+
export * from './functions/getKey';
|
|
53
|
+
export * from './functions/getLengthOfAllArray';
|
|
54
|
+
export * from './functions/getMaxLengthAllArray';
|
|
55
|
+
export * from './functions/getMinLengthAllArray';
|
|
56
|
+
export * from './functions/getMouseClient';
|
|
57
|
+
export * from './functions/getMouseClientX';
|
|
58
|
+
export * from './functions/getMouseClientY';
|
|
59
|
+
export * from './functions/getObjectByKeys';
|
|
60
|
+
export * from './functions/getObjectNoUndefined';
|
|
61
|
+
export * from './functions/getObjectOrNone';
|
|
62
|
+
export * from './functions/getRandomText';
|
|
63
|
+
export * from './functions/getRequestString';
|
|
64
|
+
export * from './functions/getStepPercent';
|
|
65
|
+
export * from './functions/getStepValue';
|
|
66
|
+
export * from './functions/goScroll';
|
|
67
|
+
export * from './functions/inArray';
|
|
68
|
+
export * from './functions/initScrollbarOffset';
|
|
69
|
+
export * from './functions/intersectKey';
|
|
70
|
+
export * from './functions/isArray';
|
|
71
|
+
export * from './functions/isDifferent';
|
|
72
|
+
export * from './functions/isDomRuntime';
|
|
73
|
+
export * from './functions/isFilled';
|
|
74
|
+
export * from './functions/isFloat';
|
|
75
|
+
export * from './functions/isFunction';
|
|
76
|
+
export * from './functions/isInDom';
|
|
77
|
+
export * from './functions/isIntegerBetween';
|
|
78
|
+
export * from './functions/isNull';
|
|
79
|
+
export * from './functions/isNumber';
|
|
80
|
+
export * from './functions/isObject';
|
|
81
|
+
export * from './functions/isObjectNotArray';
|
|
82
|
+
export * from './functions/isSelected';
|
|
83
|
+
export * from './functions/isSelectedByList';
|
|
84
|
+
export * from './functions/isString';
|
|
85
|
+
export * from './functions/isWindow';
|
|
86
|
+
export * from './functions/random';
|
|
87
|
+
export * from './functions/replaceRecursive';
|
|
88
|
+
export * from './functions/replaceTemplate';
|
|
89
|
+
export * from './functions/secondToTime';
|
|
90
|
+
export * from './functions/setElementItem';
|
|
91
|
+
export * from './functions/setValues';
|
|
92
|
+
export * from './functions/splice';
|
|
93
|
+
export * from './functions/strFill';
|
|
94
|
+
export * from './functions/toArray';
|
|
95
|
+
export * from './functions/toCamelCase';
|
|
96
|
+
export * from './functions/toCamelCaseFirst';
|
|
97
|
+
export * from './functions/toDate';
|
|
98
|
+
export * from './functions/toKebabCase';
|
|
99
|
+
export * from './functions/toNumber';
|
|
100
|
+
export * from './functions/toNumberByMax';
|
|
101
|
+
export * from './functions/toPercent';
|
|
102
|
+
export * from './functions/toPercentBy100';
|
|
103
|
+
export * from './functions/transformation';
|
|
104
|
+
export * from './functions/uniqueArray';
|
|
105
|
+
export * from './functions/writeClipboardData';
|
|
106
|
+
export * from './types/apiTypes';
|
|
107
|
+
export * from './types/basicTypes';
|
|
108
|
+
export * from './types/geoTypes';
|
|
109
|
+
export * from './types/metaTypes';
|