@daysnap/utils 0.0.29 → 0.0.31

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 (49) hide show
  1. package/README.md +4 -0
  2. package/docs/.nojekyll +1 -0
  3. package/docs/README.md +18 -0
  4. package/docs/modules.md +1209 -0
  5. package/es/compareVersion.d.ts +6 -4
  6. package/es/compareVersion.js +14 -12
  7. package/es/inBrowser.d.ts +4 -0
  8. package/es/inBrowser.js +6 -0
  9. package/es/index.d.ts +9 -0
  10. package/es/index.js +10 -1
  11. package/es/isEmptyObject.d.ts +5 -0
  12. package/es/isEmptyObject.js +7 -0
  13. package/es/isError.d.ts +4 -0
  14. package/es/isError.js +6 -0
  15. package/es/isJSONString.d.ts +5 -0
  16. package/es/isJSONString.js +13 -0
  17. package/es/isLicenseCode.d.ts +5 -0
  18. package/es/isLicenseCode.js +7 -0
  19. package/es/isWindow.d.ts +5 -0
  20. package/es/isWindow.js +7 -0
  21. package/es/parseQuery.d.ts +6 -0
  22. package/es/parseQuery.js +33 -0
  23. package/es/sleep.d.ts +4 -0
  24. package/es/sleep.js +9 -0
  25. package/es/stringifyQuery.d.ts +4 -0
  26. package/es/stringifyQuery.js +13 -0
  27. package/lib/compareVersion.d.ts +6 -4
  28. package/lib/compareVersion.js +14 -12
  29. package/lib/inBrowser.d.ts +4 -0
  30. package/lib/inBrowser.js +12 -0
  31. package/lib/index.d.ts +9 -0
  32. package/lib/index.js +99 -0
  33. package/lib/isEmptyObject.d.ts +5 -0
  34. package/lib/isEmptyObject.js +13 -0
  35. package/lib/isError.d.ts +4 -0
  36. package/lib/isError.js +12 -0
  37. package/lib/isJSONString.d.ts +5 -0
  38. package/lib/isJSONString.js +19 -0
  39. package/lib/isLicenseCode.d.ts +5 -0
  40. package/lib/isLicenseCode.js +13 -0
  41. package/lib/isWindow.d.ts +5 -0
  42. package/lib/isWindow.js +13 -0
  43. package/lib/parseQuery.d.ts +6 -0
  44. package/lib/parseQuery.js +40 -0
  45. package/lib/sleep.d.ts +4 -0
  46. package/lib/sleep.js +15 -0
  47. package/lib/stringifyQuery.d.ts +4 -0
  48. package/lib/stringifyQuery.js +19 -0
  49. package/package.json +9 -4
package/README.md CHANGED
@@ -10,3 +10,7 @@ npm install @daysnap/utils
10
10
  # or
11
11
  yarn add @daysnap/utils
12
12
  ```
13
+
14
+ ## 详情文档
15
+
16
+ [Exports](./docs/modules.md)
package/docs/.nojekyll ADDED
@@ -0,0 +1 @@
1
+ TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.
package/docs/README.md ADDED
@@ -0,0 +1,18 @@
1
+ @daysnap/utils / [Exports](modules.md)
2
+
3
+ # @daysnap/utils
4
+
5
+ 工具库
6
+
7
+ ## 使用
8
+
9
+ ```shell
10
+ npm install @daysnap/utils
11
+
12
+ # or
13
+ yarn add @daysnap/utils
14
+ ```
15
+
16
+ ## 详情文档
17
+
18
+ [Exports](./docs/modules.md)