@tspro/ts-utils-lib 1.0.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 (44) hide show
  1. package/CHANGELOG.md +5 -0
  2. package/LICENSE +22 -0
  3. package/dist/index.esm.mjs +1101 -0
  4. package/dist/types/array/index.d.ts +13 -0
  5. package/dist/types/array/index.d.ts.map +1 -0
  6. package/dist/types/array/index.test.d.ts +2 -0
  7. package/dist/types/array/index.test.d.ts.map +1 -0
  8. package/dist/types/core/LRU-cache.d.ts +18 -0
  9. package/dist/types/core/LRU-cache.d.ts.map +1 -0
  10. package/dist/types/core/index.d.ts +5 -0
  11. package/dist/types/core/index.d.ts.map +1 -0
  12. package/dist/types/core/small-int-cache.d.ts +11 -0
  13. package/dist/types/core/small-int-cache.d.ts.map +1 -0
  14. package/dist/types/core/stack.d.ts +10 -0
  15. package/dist/types/core/stack.d.ts.map +1 -0
  16. package/dist/types/core/stack.test.d.ts +2 -0
  17. package/dist/types/core/stack.test.d.ts.map +1 -0
  18. package/dist/types/core/vec2.d.ts +11 -0
  19. package/dist/types/core/vec2.d.ts.map +1 -0
  20. package/dist/types/dom/index.d.ts +46 -0
  21. package/dist/types/dom/index.d.ts.map +1 -0
  22. package/dist/types/enum/index.d.ts +8 -0
  23. package/dist/types/enum/index.d.ts.map +1 -0
  24. package/dist/types/index.d.ts +17 -0
  25. package/dist/types/index.d.ts.map +1 -0
  26. package/dist/types/map/index.d.ts +2 -0
  27. package/dist/types/map/index.d.ts.map +1 -0
  28. package/dist/types/math/index.d.ts +17 -0
  29. package/dist/types/math/index.d.ts.map +1 -0
  30. package/dist/types/math/index.test.d.ts +2 -0
  31. package/dist/types/math/index.test.d.ts.map +1 -0
  32. package/dist/types/modules/assert.d.ts +22 -0
  33. package/dist/types/modules/assert.d.ts.map +1 -0
  34. package/dist/types/modules/cookies.d.ts +13 -0
  35. package/dist/types/modules/cookies.d.ts.map +1 -0
  36. package/dist/types/modules/device.d.ts +13 -0
  37. package/dist/types/modules/device.d.ts.map +1 -0
  38. package/dist/types/modules/index.d.ts +4 -0
  39. package/dist/types/modules/index.d.ts.map +1 -0
  40. package/dist/types/string/index.d.ts +8 -0
  41. package/dist/types/string/index.d.ts.map +1 -0
  42. package/dist/types/string/index.test.d.ts +2 -0
  43. package/dist/types/string/index.test.d.ts.map +1 -0
  44. package/package.json +51 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ # Changelog
2
+
3
+ ## [1.0.0] - 2025-06-25
4
+ ### Added
5
+ - First release.
package/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+
2
+ This project is licensed under the zlib License.
3
+
4
+ ---
5
+
6
+ Copyright (c) 2023 Stefan++ Software Studio
7
+
8
+ This software is provided 'as-is', without any express or implied
9
+ warranty. In no event will the authors be held liable for any damages
10
+ arising from the use of this software.
11
+
12
+ Permission is granted to anyone to use this software for any purpose,
13
+ including commercial applications, and to alter it and redistribute it
14
+ freely, subject to the following restrictions:
15
+
16
+ 1. The origin of this software must not be misrepresented; you must not
17
+ claim that you wrote the original software. If you use this software
18
+ in a product, an acknowledgment in the product documentation would be
19
+ appreciated but is not required.
20
+ 2. Altered source versions must be plainly marked as such, and must not be
21
+ misrepresented as being the original software.
22
+ 3. This notice may not be removed or altered from any source distribution.