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