@dereekb/util 12.7.0 → 13.0.1

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 (72) hide show
  1. package/LICENSE +1 -1
  2. package/fetch/LICENSE +1 -1
  3. package/fetch/index.cjs.default.js +1 -0
  4. package/fetch/index.cjs.js +2252 -3084
  5. package/fetch/index.cjs.mjs +2 -0
  6. package/fetch/index.esm.js +2254 -3085
  7. package/fetch/package.json +14 -14
  8. package/fetch/src/lib/fetch.page.d.ts +0 -4
  9. package/fetch/src/lib/fetch.url.d.ts +0 -8
  10. package/fetch/src/lib/provider.d.ts +0 -4
  11. package/index.cjs.default.js +1 -0
  12. package/index.cjs.js +12545 -10206
  13. package/index.cjs.mjs +2 -0
  14. package/index.esm.js +12547 -10195
  15. package/package.json +23 -29
  16. package/src/lib/array/array.boolean.d.ts +0 -11
  17. package/src/lib/array/array.value.d.ts +0 -18
  18. package/src/lib/boolean.d.ts +1 -1
  19. package/src/lib/date/date.d.ts +0 -8
  20. package/src/lib/date/date.unix.d.ts +6 -30
  21. package/src/lib/date/expires.d.ts +4 -4
  22. package/src/lib/date/hour.d.ts +1 -1
  23. package/src/lib/date/time.d.ts +0 -4
  24. package/src/lib/object/object.map.d.ts +0 -9
  25. package/src/lib/page/index.d.ts +0 -1
  26. package/src/lib/promise/promise.d.ts +0 -1
  27. package/src/lib/set/set.hashset.d.ts +4 -4
  28. package/src/lib/storage/storage.d.ts +2 -2
  29. package/src/lib/string/mimetype.d.ts +0 -8
  30. package/src/lib/string/replace.d.ts +11 -1
  31. package/src/lib/tree/tree.flatten.d.ts +0 -10
  32. package/src/lib/value/indexed.d.ts +1 -1
  33. package/src/lib/value/maybe.type.d.ts +3 -3
  34. package/src/lib/value/point.d.ts +2 -2
  35. package/test/LICENSE +21 -0
  36. package/test/index.cjs.default.js +1 -0
  37. package/test/index.cjs.js +1477 -0
  38. package/test/index.cjs.mjs +2 -0
  39. package/test/index.esm.js +1434 -0
  40. package/test/package.json +15 -5
  41. package/test/src/lib/index.d.ts +1 -3
  42. package/test/src/lib/jest/index.d.ts +4 -0
  43. package/test/src/lib/jest/jest.d.ts +55 -0
  44. package/test/src/lib/jest/jest.fail.d.ts +72 -0
  45. package/test/src/lib/jest/jest.function.d.ts +41 -0
  46. package/test/src/lib/jest/jest.wrap.d.ts +24 -0
  47. package/test/src/lib/shared/index.d.ts +4 -0
  48. package/test/src/lib/shared/shared.d.ts +154 -0
  49. package/test/src/lib/shared/shared.fail.d.ts +83 -0
  50. package/test/src/lib/shared/shared.function.d.ts +25 -0
  51. package/test/src/lib/{jest.wrap.d.ts → shared/shared.wrap.d.ts} +9 -9
  52. package/index.esm.d.ts +0 -1
  53. package/src/lib/page/page.calculator.d.ts +0 -29
  54. package/test/CHANGELOG.md +0 -1960
  55. package/test/src/index.js +0 -5
  56. package/test/src/index.js.map +0 -1
  57. package/test/src/lib/index.js +0 -8
  58. package/test/src/lib/index.js.map +0 -1
  59. package/test/src/lib/jest.d.ts +0 -100
  60. package/test/src/lib/jest.fail.d.ts +0 -104
  61. package/test/src/lib/jest.fail.js +0 -224
  62. package/test/src/lib/jest.fail.js.map +0 -1
  63. package/test/src/lib/jest.function.d.ts +0 -25
  64. package/test/src/lib/jest.function.js +0 -21
  65. package/test/src/lib/jest.function.js.map +0 -1
  66. package/test/src/lib/jest.js +0 -113
  67. package/test/src/lib/jest.js.map +0 -1
  68. package/test/src/lib/jest.wrap.js +0 -70
  69. package/test/src/lib/jest.wrap.js.map +0 -1
  70. /package/fetch/{index.cjs.d.ts → index.d.ts} +0 -0
  71. /package/{fetch/index.esm.d.ts → index.d.ts} +0 -0
  72. /package/{index.cjs.d.ts → test/index.d.ts} +0 -0
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023 Hapier Creative LLC.
3
+ Copyright (c) 2025 Hapier Creative LLC.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/fetch/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2023 Hapier Creative LLC.
3
+ Copyright (c) 2025 Hapier Creative LLC.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -0,0 +1 @@
1
+ exports._default = require('./index.cjs.js').default;