si-funciona 2.2.13 → 2.2.15
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/browser/siFunciona.js +2375 -1473
- package/browser/siFunciona.min.js +1 -1
- package/dist/helpers/arrays/addUniqueToArray.js +1 -0
- package/dist/helpers/arrays/addUniqueToArray.min.js +1 -1
- package/dist/helpers/arrays/compareArrays.js +1 -0
- package/dist/helpers/arrays/compareArrays.min.js +1 -1
- package/dist/helpers/arrays/mergeArrays.js +2 -1
- package/dist/helpers/arrays/mergeArrays.min.js +1 -1
- package/dist/helpers/descriptors/assignDescriptor.js +1 -1
- package/dist/helpers/descriptors/assignDescriptor.min.js +1 -1
- package/dist/helpers/descriptors/assignDescriptorDetail.js +1 -2
- package/dist/helpers/descriptors/assignDescriptorDetail.min.js +1 -1
- package/dist/helpers/descriptors/cloneDescriptor.js +1 -0
- package/dist/helpers/descriptors/cloneDescriptor.min.js +1 -1
- package/dist/helpers/descriptors/compareDescriptor.js +2 -0
- package/dist/helpers/descriptors/compareDescriptor.min.js +1 -1
- package/dist/helpers/descriptors/describeObjectMap.js +7 -5
- package/dist/helpers/descriptors/describeObjectMap.min.js +1 -1
- package/dist/helpers/descriptors/sameDescriptor.js +1 -0
- package/dist/helpers/descriptors/sameDescriptor.min.js +1 -1
- package/dist/helpers/functions/callWithParams.js +1 -0
- package/dist/helpers/functions/callWithParams.min.js +1 -1
- package/dist/helpers/functions/curry.js +1 -0
- package/dist/helpers/functions/curry.min.js +1 -1
- package/dist/helpers/functions/delay.js +3 -3
- package/dist/helpers/functions/delay.min.js +1 -1
- package/dist/helpers/functions/pipe.js +0 -2
- package/dist/helpers/functions/pipe.min.js +1 -1
- package/dist/helpers/functions/preloadParams.js +1 -0
- package/dist/helpers/functions/preloadParams.min.js +1 -1
- package/dist/helpers/functions/queueManager.js +2 -1
- package/dist/helpers/functions/queueManager.min.js +1 -1
- package/dist/helpers/functions/queueTimeout.js +1 -0
- package/dist/helpers/functions/queueTimeout.min.js +1 -1
- package/dist/helpers/functions/relevancyFilter.js +5 -4
- package/dist/helpers/functions/relevancyFilter.min.js +1 -1
- package/dist/helpers/functions/trace.js +1 -1
- package/dist/helpers/functions/trace.min.js +1 -1
- package/dist/helpers/objects/cloneObject.js +7 -5
- package/dist/helpers/objects/cloneObject.min.js +1 -1
- package/dist/helpers/objects/dotNotate.js +6 -3
- package/dist/helpers/objects/dotNotate.min.js +1 -1
- package/dist/helpers/objects/isInstanceObject.js +1 -0
- package/dist/helpers/objects/isInstanceObject.min.js +1 -1
- package/dist/helpers/objects/mergeObjectsBase.js +11 -8
- package/dist/helpers/objects/mergeObjectsBase.min.js +1 -1
- package/dist/helpers/strings/makeFilepath.js +1 -1
- package/dist/helpers/strings/makeFilepath.min.js +1 -1
- package/dist/helpers/strings/makeRelativePath.js +2 -2
- package/dist/helpers/strings/makeRelativePath.min.js +1 -1
- package/dist/helpers/strings/regexEscape.js +2 -0
- package/dist/helpers/strings/regexEscape.min.js +1 -1
- package/dist/helpers/strings/words.js +1 -0
- package/dist/helpers/strings/words.min.js +1 -1
- package/package.json +6 -6
package/package.json
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"general",
|
|
14
14
|
"typescript"
|
|
15
15
|
],
|
|
16
|
-
"version": "2.2.
|
|
16
|
+
"version": "2.2.15",
|
|
17
17
|
"license": "GPL-3.0-or-later",
|
|
18
18
|
"bugs": {
|
|
19
19
|
"url": "https://github.com/jheagle/si-funciona/issues"
|
|
@@ -30,15 +30,15 @@
|
|
|
30
30
|
"watch:test": "gulp watchTest"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"npm": "^
|
|
33
|
+
"npm": "^12.0.1"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"collect-your-stuff": "^1.2.
|
|
36
|
+
"collect-your-stuff": "^1.2.5",
|
|
37
37
|
"gulp": "^5.0.1",
|
|
38
|
-
"js-build-tools": "^4.0.
|
|
39
|
-
"jsdoc": "^4.0.
|
|
38
|
+
"js-build-tools": "^4.0.11",
|
|
39
|
+
"jsdoc": "^4.0.5",
|
|
40
40
|
"standard": "^17.1.2",
|
|
41
|
-
"test-filesystem": "^1.3.
|
|
41
|
+
"test-filesystem": "^1.3.12"
|
|
42
42
|
},
|
|
43
43
|
"resolutions": {},
|
|
44
44
|
"repository": {
|