si-funciona 2.0.3 → 2.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 (46) hide show
  1. package/README.md +69 -2
  2. package/browser/siFunciona.js +1364 -1427
  3. package/browser/siFunciona.min.js +1 -1
  4. package/dist/helpers/arrays/BasicQueue.d.ts +61 -0
  5. package/dist/helpers/arrays/BasicQueue.js +60 -0
  6. package/dist/helpers/arrays/BasicQueue.min.js +1 -0
  7. package/dist/helpers/arrays/compareArrays.js +0 -1
  8. package/dist/helpers/arrays/compareArrays.min.js +1 -1
  9. package/dist/helpers/arrays/mergeArrays.js +0 -1
  10. package/dist/helpers/arrays/mergeArrays.min.js +1 -1
  11. package/dist/helpers/arrays.d.ts +2 -0
  12. package/dist/helpers/arrays.js +2 -0
  13. package/dist/helpers/arrays.min.js +1 -1
  14. package/dist/helpers/descriptors/assignDescriptor.js +0 -1
  15. package/dist/helpers/descriptors/assignDescriptor.min.js +1 -1
  16. package/dist/helpers/descriptors/assignDescriptorDetail.js +0 -1
  17. package/dist/helpers/descriptors/assignDescriptorDetail.min.js +1 -1
  18. package/dist/helpers/descriptors/cloneDescriptor.js +0 -1
  19. package/dist/helpers/descriptors/cloneDescriptor.min.js +1 -1
  20. package/dist/helpers/descriptors/compareDescriptor.js +0 -1
  21. package/dist/helpers/descriptors/compareDescriptor.min.js +1 -1
  22. package/dist/helpers/functions/callWithParams.js +0 -1
  23. package/dist/helpers/functions/callWithParams.min.js +1 -1
  24. package/dist/helpers/functions/curry.js +0 -1
  25. package/dist/helpers/functions/curry.min.js +1 -1
  26. package/dist/helpers/functions/delay.js +3 -3
  27. package/dist/helpers/functions/delay.min.js +1 -1
  28. package/dist/helpers/functions/makeBasicQueue.d.ts +10 -0
  29. package/dist/helpers/functions/makeBasicQueue.js +20 -0
  30. package/dist/helpers/functions/makeBasicQueue.min.js +1 -0
  31. package/dist/helpers/functions/onBodyLoad.min.js +1 -1
  32. package/dist/helpers/functions/preloadParams.js +0 -1
  33. package/dist/helpers/functions/preloadParams.min.js +1 -1
  34. package/dist/helpers/functions/queueManager.d.ts +3 -10
  35. package/dist/helpers/functions/queueManager.js +17 -7
  36. package/dist/helpers/functions/queueManager.min.js +1 -1
  37. package/dist/helpers/functions/queueTimeout.js +0 -1
  38. package/dist/helpers/functions/queueTimeout.min.js +1 -1
  39. package/dist/helpers/functions/trace.js +1 -1
  40. package/dist/helpers/functions/trace.min.js +1 -1
  41. package/dist/helpers/functions.d.ts +2 -1
  42. package/dist/helpers/functions.js +2 -0
  43. package/dist/helpers/functions.min.js +1 -1
  44. package/dist/helpers/objects/dotNotate.js +3 -4
  45. package/dist/helpers/objects/dotNotate.min.js +1 -1
  46. package/package.json +61 -61
package/package.json CHANGED
@@ -1,61 +1,61 @@
1
- {
2
- "name": "si-funciona",
3
- "author": "Joshua Heagle <joshuaheagle@gmail.com> (https://joshuaheagle.com)",
4
- "description": "Funciones de utilidad para uso general. [General usage utility functions.]",
5
- "homepage": "https://github.com/jheagle/si-funciona#readme",
6
- "keywords": [
7
- "functional",
8
- "helpers",
9
- "utility",
10
- "funcional",
11
- "ayudas",
12
- "utilidades",
13
- "general",
14
- "typescript"
15
- ],
16
- "version": "2.0.3",
17
- "license": "GPL-3.0-or-later",
18
- "bugs": {
19
- "url": "https://github.com/jheagle/si-funciona/issues"
20
- },
21
- "scripts": {
22
- "build": "gulp build",
23
- "dev": "gulp",
24
- "htmldocs": "jsdoc -R MAIN.md -c ./.jsdoc.conf.js -d docs",
25
- "readme": "gulp readme",
26
- "resolutions": "npx npm-force-resolutions",
27
- "test": "gulp testFull",
28
- "test:quick": "gulp testQuick",
29
- "watch": "gulp watchFull",
30
- "watch:test": "gulp watchTest"
31
- },
32
- "dependencies": {
33
- "npm": "^10.1.0"
34
- },
35
- "devDependencies": {
36
- "gulp": "^4.0.2",
37
- "js-build-tools": "^2.2.7",
38
- "jsdoc": "^4.0.2",
39
- "standard": "^17.1.0"
40
- },
41
- "resolutions": {},
42
- "repository": {
43
- "type": "git",
44
- "url": "git+https://github.com/jheagle/si-funciona.git"
45
- },
46
- "main": "dist/main.min.js",
47
- "types": "dist/main.js",
48
- "files": [
49
- "dist",
50
- "browser"
51
- ],
52
- "funding": "https://www.paypal.com/donate/?business=LRYR6SZRWKXVY&no_recurring=0&item_name=Let%27s+build+together+today+to+simplify+our+jobs+tomorrow.&currency_code=CAD",
53
- "standard": {
54
- "env": [
55
- "jest"
56
- ]
57
- },
58
- "directories": {
59
- "doc": "docs"
60
- }
61
- }
1
+ {
2
+ "name": "si-funciona",
3
+ "author": "Joshua Heagle <joshuaheagle@gmail.com> (https://joshuaheagle.com)",
4
+ "description": "Funciones de utilidad para uso general. [General usage utility functions.]",
5
+ "homepage": "https://github.com/jheagle/si-funciona#readme",
6
+ "keywords": [
7
+ "functional",
8
+ "helpers",
9
+ "utility",
10
+ "funcional",
11
+ "ayudas",
12
+ "utilidades",
13
+ "general",
14
+ "typescript"
15
+ ],
16
+ "version": "2.1.0",
17
+ "license": "GPL-3.0-or-later",
18
+ "bugs": {
19
+ "url": "https://github.com/jheagle/si-funciona/issues"
20
+ },
21
+ "scripts": {
22
+ "build": "gulp build",
23
+ "dev": "gulp",
24
+ "htmldocs": "jsdoc -R MAIN.md -c ./.jsdoc.conf.js -d docs",
25
+ "readme": "gulp readme",
26
+ "resolutions": "npx npm-force-resolutions",
27
+ "test": "gulp testFull",
28
+ "test:quick": "gulp testQuick",
29
+ "watch": "gulp watchFull",
30
+ "watch:test": "gulp watchTest"
31
+ },
32
+ "dependencies": {
33
+ "npm": "^10.2.3"
34
+ },
35
+ "devDependencies": {
36
+ "gulp": "^4.0.2",
37
+ "js-build-tools": "^2.2.10",
38
+ "jsdoc": "^4.0.2",
39
+ "standard": "^17.1.0"
40
+ },
41
+ "resolutions": {},
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "git+https://github.com/jheagle/si-funciona.git"
45
+ },
46
+ "main": "dist/main.min.js",
47
+ "types": "dist/main.js",
48
+ "files": [
49
+ "dist",
50
+ "browser"
51
+ ],
52
+ "funding": "https://www.paypal.com/donate/?business=LRYR6SZRWKXVY&no_recurring=0&item_name=Let%27s+build+together+today+to+simplify+our+jobs+tomorrow.&currency_code=CAD",
53
+ "standard": {
54
+ "env": [
55
+ "jest"
56
+ ]
57
+ },
58
+ "directories": {
59
+ "doc": "docs"
60
+ }
61
+ }