@ezez/utils 1.8.1 → 2.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 (162) hide show
  1. package/CHANGELOG.md +14 -1
  2. package/README.md +3 -0
  3. package/dist/deserialize.d.ts +13 -0
  4. package/dist/deserialize.d.ts.map +1 -0
  5. package/dist/deserialize.js +42 -0
  6. package/dist/deserialize.js.map +1 -0
  7. package/dist/index.d.ts +4 -0
  8. package/dist/index.d.ts.map +1 -1
  9. package/dist/index.js +4 -0
  10. package/dist/index.js.map +1 -1
  11. package/dist/omit.js +3 -1
  12. package/dist/omit.js.map +1 -1
  13. package/dist/removeCommonProperties.d.ts +4 -0
  14. package/dist/removeCommonProperties.d.ts.map +1 -0
  15. package/dist/removeCommonProperties.js +15 -0
  16. package/dist/removeCommonProperties.js.map +1 -0
  17. package/dist/replace.d.ts.map +1 -1
  18. package/dist/replace.js.map +1 -1
  19. package/dist/replaceDeep.d.ts +3 -0
  20. package/dist/replaceDeep.d.ts.map +1 -0
  21. package/dist/replaceDeep.js +26 -0
  22. package/dist/replaceDeep.js.map +1 -0
  23. package/dist/safe.d.ts.map +1 -1
  24. package/dist/safe.js +1 -1
  25. package/dist/safe.js.map +1 -1
  26. package/dist/serialize.d.ts +16 -0
  27. package/dist/serialize.d.ts.map +1 -0
  28. package/dist/serialize.js +61 -0
  29. package/dist/serialize.js.map +1 -0
  30. package/dist/setImmutable.js +1 -1
  31. package/dist/setImmutable.js.map +1 -1
  32. package/dist/sortBy.js +1 -2
  33. package/dist/sortBy.js.map +1 -1
  34. package/dist/sortProps.d.ts.map +1 -1
  35. package/dist/sortProps.js.map +1 -1
  36. package/dist/throttle.js +5 -7
  37. package/dist/throttle.js.map +1 -1
  38. package/docs/assets/search.js +1 -1
  39. package/docs/functions/cap.html +12 -6
  40. package/docs/functions/capitalize.html +12 -6
  41. package/docs/functions/coalesce.html +12 -6
  42. package/docs/functions/compareArrays.html +12 -6
  43. package/docs/functions/compareProps.html +12 -6
  44. package/docs/functions/deserialize.html +148 -0
  45. package/docs/functions/ensureArray.html +12 -6
  46. package/docs/functions/ensureDate.html +12 -6
  47. package/docs/functions/ensureError.html +12 -6
  48. package/docs/functions/ensurePrefix.html +12 -6
  49. package/docs/functions/ensureSuffix.html +12 -6
  50. package/docs/functions/ensureTimestamp.html +12 -6
  51. package/docs/functions/escapeRegExp.html +12 -6
  52. package/docs/functions/formatDate.html +12 -6
  53. package/docs/functions/get.html +12 -6
  54. package/docs/functions/getMultiple.html +12 -6
  55. package/docs/functions/insertSeparator.html +12 -6
  56. package/docs/functions/isEmpty.html +12 -6
  57. package/docs/functions/isNumericString.html +12 -6
  58. package/docs/functions/isPlainObject.html +12 -6
  59. package/docs/functions/last.html +12 -6
  60. package/docs/functions/later-1.html +12 -6
  61. package/docs/functions/mapAsync.html +12 -6
  62. package/docs/functions/mapValues.html +12 -6
  63. package/docs/functions/match.html +12 -6
  64. package/docs/functions/merge.html +20 -14
  65. package/docs/functions/mostFrequent.html +12 -6
  66. package/docs/functions/noop.html +12 -6
  67. package/docs/functions/occurrences.html +12 -6
  68. package/docs/functions/omit.html +12 -6
  69. package/docs/functions/pick.html +12 -6
  70. package/docs/functions/pull.html +12 -6
  71. package/docs/functions/remove.html +12 -6
  72. package/docs/functions/removeCommonProperties.html +156 -0
  73. package/docs/functions/replace.html +12 -6
  74. package/docs/functions/replaceDeep.html +153 -0
  75. package/docs/functions/rethrow.html +12 -6
  76. package/docs/functions/safe.html +13 -7
  77. package/docs/functions/scale.html +12 -6
  78. package/docs/functions/seq.html +12 -6
  79. package/docs/functions/seqEarlyBreak.html +12 -6
  80. package/docs/functions/serialize.html +153 -0
  81. package/docs/functions/set.html +12 -6
  82. package/docs/functions/setImmutable.html +12 -6
  83. package/docs/functions/sortBy.html +12 -6
  84. package/docs/functions/sortProps.html +15 -7
  85. package/docs/functions/stripPrefix.html +12 -6
  86. package/docs/functions/stripSuffix.html +12 -6
  87. package/docs/functions/throttle.html +12 -6
  88. package/docs/functions/truthy.html +12 -6
  89. package/docs/functions/unique.html +12 -6
  90. package/docs/functions/wait.html +12 -6
  91. package/docs/functions/waitFor.html +12 -6
  92. package/docs/functions/waitSync.html +12 -6
  93. package/docs/index.html +14 -5
  94. package/docs/interfaces/ComparePropsOptions.html +6 -6
  95. package/docs/interfaces/GetMultipleSource.html +12 -6
  96. package/docs/interfaces/GetSource.html +12 -6
  97. package/docs/interfaces/IsNumericStringOptions.html +9 -9
  98. package/docs/interfaces/OccurencesOptions.html +6 -6
  99. package/docs/interfaces/SetImmutableSource.html +12 -6
  100. package/docs/interfaces/SetSource.html +12 -6
  101. package/docs/interfaces/ThrottleOptions.html +7 -7
  102. package/docs/interfaces/ThrottledFunctionExtras.html +7 -7
  103. package/docs/modules.html +17 -5
  104. package/docs/pages/CHANGELOG.html +76 -38
  105. package/docs/pages/Introduction.html +11 -5
  106. package/docs/types/CustomDeserializers.html +151 -0
  107. package/docs/types/CustomSerializers.html +151 -0
  108. package/docs/types/Later.html +12 -6
  109. package/docs/types/MapValuesFn.html +12 -6
  110. package/docs/types/MatchCallback.html +12 -6
  111. package/docs/types/SeqEarlyBreaker.html +12 -6
  112. package/docs/types/SeqFn.html +12 -6
  113. package/docs/types/SeqFunctions.html +12 -6
  114. package/docs/types/SetImmutablePath.html +12 -6
  115. package/docs/types/ThrottledFunction.html +12 -6
  116. package/docs/variables/mapValuesUNSET.html +12 -6
  117. package/docs/variables/mergeUNSET.html +12 -6
  118. package/esm/deserialize.d.ts +13 -0
  119. package/esm/deserialize.d.ts.map +1 -0
  120. package/esm/deserialize.js +39 -0
  121. package/esm/deserialize.js.map +1 -0
  122. package/esm/index.d.ts +4 -0
  123. package/esm/index.d.ts.map +1 -1
  124. package/esm/index.js +4 -0
  125. package/esm/index.js.map +1 -1
  126. package/esm/removeCommonProperties.d.ts +4 -0
  127. package/esm/removeCommonProperties.d.ts.map +1 -0
  128. package/esm/removeCommonProperties.js +12 -0
  129. package/esm/removeCommonProperties.js.map +1 -0
  130. package/esm/replace.d.ts.map +1 -1
  131. package/esm/replace.js.map +1 -1
  132. package/esm/replaceDeep.d.ts +3 -0
  133. package/esm/replaceDeep.d.ts.map +1 -0
  134. package/esm/replaceDeep.js +23 -0
  135. package/esm/replaceDeep.js.map +1 -0
  136. package/esm/safe.d.ts.map +1 -1
  137. package/esm/safe.js.map +1 -1
  138. package/esm/serialize.d.ts +16 -0
  139. package/esm/serialize.d.ts.map +1 -0
  140. package/esm/serialize.js +58 -0
  141. package/esm/serialize.js.map +1 -0
  142. package/esm/sortBy.js +1 -2
  143. package/esm/sortBy.js.map +1 -1
  144. package/esm/sortProps.d.ts.map +1 -1
  145. package/esm/sortProps.js.map +1 -1
  146. package/esm/throttle.js +5 -7
  147. package/esm/throttle.js.map +1 -1
  148. package/package.json +28 -27
  149. package/pnpm-lock.yaml +5223 -0
  150. package/src/deserialize.spec.ts +69 -0
  151. package/src/deserialize.ts +74 -0
  152. package/src/index.ts +4 -0
  153. package/src/removeCommonProperties.spec.ts +34 -0
  154. package/src/removeCommonProperties.ts +39 -0
  155. package/src/replace.ts +0 -1
  156. package/src/replaceDeep.spec.ts +71 -0
  157. package/src/replaceDeep.ts +44 -0
  158. package/src/safe.ts +0 -1
  159. package/src/serialize.spec.ts +83 -0
  160. package/src/serialize.ts +102 -0
  161. package/src/sortProps.ts +4 -1
  162. package/babel.config.cjs +0 -6

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.