ramda-adjunct 4.1.1 → 5.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 (640) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/README.md +2 -2
  3. package/dist/RA.node.js +3623 -3140
  4. package/dist/RA.node.min.js +1 -2
  5. package/dist/RA.web.js +3623 -3140
  6. package/dist/RA.web.min.js +1 -2
  7. package/dist/RA.web.standalone.js +7433 -16469
  8. package/dist/RA.web.standalone.min.js +1 -2
  9. package/dist/package.json +1 -0
  10. package/es/allEqual.js +1 -1
  11. package/es/allIdentical.js +1 -1
  12. package/es/allSettledP.js +2 -2
  13. package/es/allUnique.js +1 -1
  14. package/es/anyP.js +2 -2
  15. package/es/argsPass.js +2 -2
  16. package/es/async.js +2 -2
  17. package/es/cata.js +1 -1
  18. package/es/compact.js +1 -1
  19. package/es/concatAll.js +1 -1
  20. package/es/copyKeys.js +7 -7
  21. package/es/curryRight.js +1 -1
  22. package/es/delayP.js +2 -2
  23. package/es/dispatch.js +8 -8
  24. package/es/ensureArray.js +1 -1
  25. package/es/escapeRegExp.js +1 -1
  26. package/es/fantasy-land/Identity.js +9 -10
  27. package/es/fantasy-land/traits.js +9 -9
  28. package/es/flattenDepth.js +6 -6
  29. package/es/flattenProp.js +1 -1
  30. package/es/fnull.js +2 -2
  31. package/es/index.js +228 -229
  32. package/es/internal/ap.js +2 -2
  33. package/es/internal/isCoercible.js +3 -3
  34. package/es/internal/isOfTypeObject.js +1 -1
  35. package/es/internal/makeFlat.js +1 -1
  36. package/es/internal/ponyfills/Array.from.js +9 -9
  37. package/es/internal/ponyfills/Math.trunc.js +1 -1
  38. package/es/internal/ponyfills/Number.isFinite.js +1 -1
  39. package/es/internal/ponyfills/Number.isInteger.js +1 -1
  40. package/es/internal/ponyfills/Number.isNaN.js +1 -1
  41. package/es/internal/ponyfills/Number.isSafeInteger.js +2 -2
  42. package/es/internal/ponyfills/Promise.allSettled.js +7 -7
  43. package/es/internal/ponyfills/Promise.any.js +24 -25
  44. package/es/internal/ponyfills/String.padEnd.js +3 -3
  45. package/es/internal/ponyfills/String.padStart.js +3 -3
  46. package/es/internal/ponyfills/String.repeat.js +2 -2
  47. package/es/internal/ponyfills/String.replaceAll.js +2 -2
  48. package/es/invoke.js +1 -1
  49. package/es/invokeArgs.js +2 -2
  50. package/es/isArray.js +1 -1
  51. package/es/isArrayLike.js +3 -3
  52. package/es/isBlank.js +1 -1
  53. package/es/isEmptyArray.js +1 -1
  54. package/es/isEven.js +2 -2
  55. package/es/isFalsy.js +1 -1
  56. package/es/isFinite.js +2 -2
  57. package/es/isFloat.js +2 -2
  58. package/es/isFunction.js +2 -2
  59. package/es/isIndexed.js +2 -2
  60. package/es/isInteger.js +2 -2
  61. package/es/isInteger32.js +1 -1
  62. package/es/isIterable.js +1 -1
  63. package/es/isNaN.js +2 -2
  64. package/es/isNaturalNumber.js +2 -2
  65. package/es/isNegative.js +1 -1
  66. package/es/isNonEmptyArray.js +2 -3
  67. package/es/isNonEmptyString.js +3 -4
  68. package/es/isNonNegative.js +1 -1
  69. package/es/isNonPositive.js +1 -1
  70. package/es/isNotArray.js +1 -1
  71. package/es/isNotArrayLike.js +1 -1
  72. package/es/isNotAsyncFunction.js +1 -1
  73. package/es/isNotBoolean.js +1 -1
  74. package/es/isNotDate.js +1 -1
  75. package/es/isNotFinite.js +1 -1
  76. package/es/isNotFloat.js +1 -1
  77. package/es/isNotFunction.js +1 -1
  78. package/es/isNotGeneratorFunction.js +1 -1
  79. package/es/isNotInteger.js +1 -1
  80. package/es/isNotMap.js +1 -1
  81. package/es/isNotNaN.js +1 -1
  82. package/es/isNotNilOrEmpty.js +1 -1
  83. package/es/isNotNull.js +1 -1
  84. package/es/isNotNumber.js +1 -1
  85. package/es/isNotObj.js +1 -1
  86. package/es/isNotObjLike.js +1 -1
  87. package/es/isNotPair.js +1 -1
  88. package/es/isNotPlainObj.js +1 -1
  89. package/es/isNotPrimitive.js +1 -1
  90. package/es/isNotRegExp.js +1 -1
  91. package/es/isNotSet.js +1 -1
  92. package/es/isNotString.js +1 -1
  93. package/es/isNotUndefined.js +1 -1
  94. package/es/isNotValidDate.js +1 -1
  95. package/es/isNotValidNumber.js +1 -1
  96. package/es/isObj.js +3 -3
  97. package/es/isObjLike.js +2 -2
  98. package/es/isOdd.js +1 -1
  99. package/es/isPair.js +1 -1
  100. package/es/isPlainObj.js +3 -3
  101. package/es/isPositive.js +1 -1
  102. package/es/isPrimitive.js +8 -8
  103. package/es/isPromise.js +1 -1
  104. package/es/isPrototypeOf.js +1 -1
  105. package/es/isSafeInteger.js +2 -2
  106. package/es/isSentinelValue.js +1 -1
  107. package/es/isSparseArray.js +1 -1
  108. package/es/isSymbol.js +1 -1
  109. package/es/isThenable.js +1 -1
  110. package/es/isUinteger32.js +1 -1
  111. package/es/isUndefined.js +1 -1
  112. package/es/isValidDate.js +2 -2
  113. package/es/isValidNumber.js +2 -2
  114. package/es/lastP.js +10 -10
  115. package/es/lengthEq.js +1 -1
  116. package/es/lengthGt.js +1 -1
  117. package/es/lengthGte.js +1 -1
  118. package/es/lengthLt.js +1 -1
  119. package/es/lengthLte.js +1 -1
  120. package/es/lengthNotEq.js +1 -1
  121. package/es/lensNotEq.js +1 -1
  122. package/es/lensNotSatisfy.js +1 -1
  123. package/es/lensSatisfies.js +1 -1
  124. package/es/lensTraverse.js +1 -1
  125. package/es/liftF.js +1 -1
  126. package/es/liftFN.js +1 -1
  127. package/es/mergePaths.js +1 -1
  128. package/es/mergeProp.js +1 -1
  129. package/es/noneP.js +3 -3
  130. package/es/noop.js +1 -1
  131. package/es/notAllUnique.js +1 -1
  132. package/es/overlaps.js +1 -2
  133. package/es/padCharsEnd.js +2 -2
  134. package/es/padCharsStart.js +2 -2
  135. package/es/padEnd.js +1 -1
  136. package/es/padStart.js +1 -1
  137. package/es/rangeStep.js +1 -1
  138. package/es/reduceP.js +8 -8
  139. package/es/reduceRightP.js +8 -8
  140. package/es/renameKey.js +5 -5
  141. package/es/renameKeyWith.js +1 -1
  142. package/es/renameKeys.js +1 -1
  143. package/es/repeatStr.js +2 -2
  144. package/es/replaceAll.js +2 -2
  145. package/es/sign.js +2 -2
  146. package/es/sortByProp.js +1 -1
  147. package/es/sortByProps.js +5 -5
  148. package/es/spreadProp.js +1 -1
  149. package/es/toArray.js +3 -3
  150. package/es/toNumber.js +1 -1
  151. package/es/trimCharsEnd.js +1 -1
  152. package/es/trimCharsStart.js +1 -1
  153. package/es/trimEnd.js +2 -2
  154. package/es/trimStart.js +2 -2
  155. package/es/trunc.js +2 -2
  156. package/es/unzipObjWith.js +1 -1
  157. package/lib/Y.js +1 -2
  158. package/lib/allEqual.js +4 -4
  159. package/lib/allEqualTo.js +1 -2
  160. package/lib/allIdentical.js +3 -4
  161. package/lib/allIdenticalTo.js +1 -2
  162. package/lib/allP.js +1 -2
  163. package/lib/allSettledP.js +5 -7
  164. package/lib/allUnique.js +3 -4
  165. package/lib/anyP.js +9 -11
  166. package/lib/appendFlipped.js +1 -2
  167. package/lib/argsPass.js +4 -5
  168. package/lib/async.js +4 -5
  169. package/lib/cata.js +3 -4
  170. package/lib/catchP.js +1 -2
  171. package/lib/ceil.js +1 -2
  172. package/lib/compact.js +3 -4
  173. package/lib/concatAll.js +3 -4
  174. package/lib/concatRight.js +1 -2
  175. package/lib/copyKeys.js +9 -10
  176. package/lib/curryRight.js +3 -4
  177. package/lib/curryRightN.js +1 -2
  178. package/lib/defaultWhen.js +1 -2
  179. package/lib/delayP.js +4 -5
  180. package/lib/dispatch.js +45 -46
  181. package/lib/divideNum.js +1 -2
  182. package/lib/dropArgs.js +1 -2
  183. package/lib/ensureArray.js +3 -4
  184. package/lib/escapeRegExp.js +3 -4
  185. package/lib/fantasy-land/Identity.js +12 -14
  186. package/lib/fantasy-land/mapping.js +20 -40
  187. package/lib/fantasy-land/traits.js +19 -25
  188. package/lib/fantasy-land/util.js +4 -8
  189. package/lib/filterIndexed.js +1 -2
  190. package/lib/findOr.js +1 -2
  191. package/lib/flattenDepth.js +8 -9
  192. package/lib/flattenPath.js +1 -2
  193. package/lib/flattenProp.js +3 -4
  194. package/lib/floor.js +1 -2
  195. package/lib/fnull.js +4 -5
  196. package/lib/inRange.js +2 -3
  197. package/lib/included.js +1 -2
  198. package/lib/index.js +216 -218
  199. package/lib/internal/ap.js +7 -8
  200. package/lib/internal/compareLength.js +1 -2
  201. package/lib/internal/isCoercible.js +5 -6
  202. package/lib/internal/isOfTypeObject.js +2 -3
  203. package/lib/internal/makeFlat.js +3 -4
  204. package/lib/internal/ponyfills/Array.from.js +11 -12
  205. package/lib/internal/ponyfills/Math.sign.js +1 -2
  206. package/lib/internal/ponyfills/Math.trunc.js +3 -4
  207. package/lib/internal/ponyfills/Number.MAX_SAFE_INTEGER.js +1 -2
  208. package/lib/internal/ponyfills/Number.MIN_SAFE_INTEGER.js +1 -2
  209. package/lib/internal/ponyfills/Number.isFinite.js +3 -4
  210. package/lib/internal/ponyfills/Number.isInteger.js +3 -4
  211. package/lib/internal/ponyfills/Number.isNaN.js +3 -4
  212. package/lib/internal/ponyfills/Number.isSafeInteger.js +5 -6
  213. package/lib/internal/ponyfills/Promise.allSettled.js +9 -10
  214. package/lib/internal/ponyfills/Promise.any.js +27 -30
  215. package/lib/internal/ponyfills/String.padEnd.js +6 -7
  216. package/lib/internal/ponyfills/String.padStart.js +6 -7
  217. package/lib/internal/ponyfills/String.repeat.js +4 -5
  218. package/lib/internal/ponyfills/String.replaceAll.js +4 -5
  219. package/lib/internal/ponyfills/String.trimEnd.js +1 -2
  220. package/lib/internal/ponyfills/String.trimStart.js +1 -2
  221. package/lib/invoke.js +3 -4
  222. package/lib/invokeArgs.js +4 -5
  223. package/lib/isArray.js +3 -4
  224. package/lib/isArrayLike.js +6 -7
  225. package/lib/isAsyncFunction.js +1 -2
  226. package/lib/isBigInt.js +1 -2
  227. package/lib/isBlank.js +3 -4
  228. package/lib/isBoolean.js +1 -2
  229. package/lib/isDate.js +1 -2
  230. package/lib/isEmptyArray.js +3 -4
  231. package/lib/isEmptyString.js +1 -2
  232. package/lib/isError.js +1 -2
  233. package/lib/isEven.js +4 -5
  234. package/lib/isFalse.js +1 -2
  235. package/lib/isFalsy.js +3 -4
  236. package/lib/isFinite.js +5 -7
  237. package/lib/isFloat.js +4 -5
  238. package/lib/isFunction.js +4 -5
  239. package/lib/isGeneratorFunction.js +1 -2
  240. package/lib/isIndexed.js +4 -5
  241. package/lib/isInteger.js +5 -7
  242. package/lib/isInteger32.js +3 -4
  243. package/lib/isIterable.js +3 -4
  244. package/lib/isMap.js +1 -2
  245. package/lib/isNaN.js +5 -7
  246. package/lib/isNaturalNumber.js +4 -5
  247. package/lib/isNegative.js +3 -4
  248. package/lib/isNegativeZero.js +1 -2
  249. package/lib/isNilOrEmpty.js +1 -2
  250. package/lib/isNonEmptyArray.js +4 -6
  251. package/lib/isNonEmptyString.js +5 -7
  252. package/lib/isNonNegative.js +3 -4
  253. package/lib/isNonPositive.js +3 -4
  254. package/lib/isNotArray.js +3 -4
  255. package/lib/isNotArrayLike.js +3 -4
  256. package/lib/isNotAsyncFunction.js +3 -4
  257. package/lib/isNotBoolean.js +3 -4
  258. package/lib/isNotDate.js +3 -4
  259. package/lib/isNotFinite.js +3 -4
  260. package/lib/isNotFloat.js +3 -4
  261. package/lib/isNotFunction.js +3 -4
  262. package/lib/isNotGeneratorFunction.js +3 -4
  263. package/lib/isNotInteger.js +3 -4
  264. package/lib/isNotMap.js +3 -4
  265. package/lib/isNotNaN.js +3 -4
  266. package/lib/isNotNil.js +1 -2
  267. package/lib/isNotNilOrEmpty.js +3 -4
  268. package/lib/isNotNull.js +3 -4
  269. package/lib/isNotNumber.js +3 -4
  270. package/lib/isNotObj.js +3 -4
  271. package/lib/isNotObjLike.js +3 -4
  272. package/lib/isNotPair.js +3 -4
  273. package/lib/isNotPlainObj.js +3 -4
  274. package/lib/isNotPrimitive.js +3 -4
  275. package/lib/isNotRegExp.js +3 -4
  276. package/lib/isNotSet.js +3 -4
  277. package/lib/isNotString.js +3 -4
  278. package/lib/isNotUndefined.js +3 -4
  279. package/lib/isNotValidDate.js +3 -4
  280. package/lib/isNotValidNumber.js +3 -4
  281. package/lib/isNull.js +1 -2
  282. package/lib/isNumber.js +1 -2
  283. package/lib/isObj.js +5 -6
  284. package/lib/isObjLike.js +4 -5
  285. package/lib/isOdd.js +3 -4
  286. package/lib/isPair.js +3 -4
  287. package/lib/isPlainObj.js +5 -6
  288. package/lib/isPositive.js +3 -4
  289. package/lib/isPositiveZero.js +1 -2
  290. package/lib/isPrimitive.js +10 -11
  291. package/lib/isPromise.js +3 -4
  292. package/lib/isPrototypeOf.js +3 -4
  293. package/lib/isRegExp.js +1 -2
  294. package/lib/isSafeInteger.js +6 -7
  295. package/lib/isSentinelValue.js +5 -5
  296. package/lib/isSet.js +1 -2
  297. package/lib/isSparseArray.js +3 -4
  298. package/lib/isString.js +1 -2
  299. package/lib/isSymbol.js +2 -3
  300. package/lib/isThenable.js +3 -4
  301. package/lib/isTrue.js +1 -2
  302. package/lib/isTruthy.js +1 -2
  303. package/lib/isUinteger32.js +3 -4
  304. package/lib/isUndefined.js +3 -4
  305. package/lib/isValidDate.js +4 -5
  306. package/lib/isValidNumber.js +4 -5
  307. package/lib/lastP.js +12 -13
  308. package/lib/lengthEq.js +3 -4
  309. package/lib/lengthGt.js +3 -4
  310. package/lib/lengthGte.js +3 -4
  311. package/lib/lengthLt.js +3 -4
  312. package/lib/lengthLte.js +3 -4
  313. package/lib/lengthNotEq.js +3 -4
  314. package/lib/lensEq.js +1 -2
  315. package/lib/lensIso.js +1 -2
  316. package/lib/lensNotEq.js +3 -4
  317. package/lib/lensNotSatisfy.js +3 -4
  318. package/lib/lensSatisfies.js +3 -4
  319. package/lib/lensTraverse.js +3 -4
  320. package/lib/liftF.js +3 -4
  321. package/lib/liftFN.js +3 -4
  322. package/lib/list.js +1 -2
  323. package/lib/mapIndexed.js +1 -2
  324. package/lib/mergePath.js +1 -2
  325. package/lib/mergePaths.js +3 -4
  326. package/lib/mergeProp.js +3 -4
  327. package/lib/mergeProps.js +1 -2
  328. package/lib/move.js +1 -2
  329. package/lib/nand.js +1 -2
  330. package/lib/neither.js +1 -2
  331. package/lib/noneP.js +5 -6
  332. package/lib/nonePass.js +1 -2
  333. package/lib/noop.js +3 -4
  334. package/lib/nor.js +1 -2
  335. package/lib/notAllPass.js +1 -2
  336. package/lib/notAllUnique.js +3 -4
  337. package/lib/notBoth.js +1 -2
  338. package/lib/notEqual.js +1 -2
  339. package/lib/omitBy.js +1 -2
  340. package/lib/omitIndexes.js +1 -2
  341. package/lib/overlaps.js +2 -5
  342. package/lib/package.json +1 -0
  343. package/lib/padCharsEnd.js +6 -9
  344. package/lib/padCharsStart.js +6 -9
  345. package/lib/padEnd.js +3 -4
  346. package/lib/padStart.js +3 -4
  347. package/lib/pathNotEq.js +1 -2
  348. package/lib/pathOrLazy.js +1 -2
  349. package/lib/paths.js +1 -2
  350. package/lib/pickIndexes.js +1 -2
  351. package/lib/propNotEq.js +1 -2
  352. package/lib/rangeStep.js +3 -4
  353. package/lib/reduceIndexed.js +1 -2
  354. package/lib/reduceP.js +10 -11
  355. package/lib/reduceRightP.js +10 -11
  356. package/lib/rejectP.js +1 -2
  357. package/lib/renameKey.js +7 -8
  358. package/lib/renameKeyWith.js +3 -4
  359. package/lib/renameKeys.js +3 -4
  360. package/lib/renameKeysWith.js +1 -2
  361. package/lib/repeatStr.js +6 -9
  362. package/lib/replaceAll.js +6 -9
  363. package/lib/resolveP.js +1 -2
  364. package/lib/round.js +1 -2
  365. package/lib/seq.js +2 -2
  366. package/lib/sign.js +6 -7
  367. package/lib/skipTake.js +1 -2
  368. package/lib/sliceFrom.js +1 -2
  369. package/lib/sliceTo.js +1 -2
  370. package/lib/sortByPaths.js +1 -2
  371. package/lib/sortByProp.js +3 -4
  372. package/lib/sortByProps.js +6 -7
  373. package/lib/spreadPath.js +1 -2
  374. package/lib/spreadProp.js +3 -4
  375. package/lib/stubArray.js +1 -2
  376. package/lib/stubNull.js +1 -2
  377. package/lib/stubObj.js +1 -2
  378. package/lib/stubString.js +1 -2
  379. package/lib/stubUndefined.js +1 -2
  380. package/lib/subtractNum.js +1 -2
  381. package/lib/thenCatchP.js +2 -4
  382. package/lib/toArray.js +6 -8
  383. package/lib/toInteger32.js +3 -3
  384. package/lib/toNumber.js +3 -4
  385. package/lib/toUinteger32.js +4 -3
  386. package/lib/trimCharsEnd.js +3 -4
  387. package/lib/trimCharsStart.js +3 -4
  388. package/lib/trimEnd.js +7 -9
  389. package/lib/trimStart.js +7 -9
  390. package/lib/trunc.js +6 -7
  391. package/lib/unzipObjWith.js +3 -4
  392. package/lib/viewOr.js +1 -2
  393. package/lib/weave.js +1 -2
  394. package/lib/weaveLazy.js +1 -2
  395. package/lib/zipObjWith.js +1 -2
  396. package/package.json +59 -51
  397. package/dist/RA.node.min.js.LICENSE.txt +0 -22
  398. package/dist/RA.web.min.js.LICENSE.txt +0 -22
  399. package/dist/RA.web.standalone.min.js.LICENSE.txt +0 -22
  400. package/es/isNotEmpty.js +0 -25
  401. package/lib/isNotEmpty.js +0 -29
  402. package/src/Y.js +0 -32
  403. package/src/allEqual.js +0 -28
  404. package/src/allEqualTo.js +0 -25
  405. package/src/allIdentical.js +0 -26
  406. package/src/allIdenticalTo.js +0 -25
  407. package/src/allP.js +0 -27
  408. package/src/allSettledP.js +0 -34
  409. package/src/allUnique.js +0 -25
  410. package/src/anyP.js +0 -33
  411. package/src/appendFlipped.js +0 -24
  412. package/src/argsPass.js +0 -40
  413. package/src/async.js +0 -60
  414. package/src/cata.js +0 -86
  415. package/src/catchP.js +0 -25
  416. package/src/ceil.js +0 -28
  417. package/src/compact.js +0 -23
  418. package/src/concatAll.js +0 -35
  419. package/src/concatRight.js +0 -30
  420. package/src/copyKeys.js +0 -31
  421. package/src/curryRight.js +0 -26
  422. package/src/curryRightN.js +0 -29
  423. package/src/defaultWhen.js +0 -26
  424. package/src/delayP.js +0 -45
  425. package/src/dispatch.js +0 -74
  426. package/src/divideNum.js +0 -20
  427. package/src/dropArgs.js +0 -23
  428. package/src/ensureArray.js +0 -24
  429. package/src/escapeRegExp.js +0 -22
  430. package/src/fantasy-land/Identity.js +0 -270
  431. package/src/fantasy-land/mapping.js +0 -20
  432. package/src/fantasy-land/traits.js +0 -57
  433. package/src/fantasy-land/util.js +0 -23
  434. package/src/filterIndexed.js +0 -28
  435. package/src/findOr.js +0 -30
  436. package/src/flattenDepth.js +0 -39
  437. package/src/flattenPath.js +0 -28
  438. package/src/flattenProp.js +0 -28
  439. package/src/floor.js +0 -27
  440. package/src/fnull.js +0 -38
  441. package/src/inRange.js +0 -34
  442. package/src/included.js +0 -28
  443. package/src/index.js +0 -242
  444. package/src/internal/ap.js +0 -30
  445. package/src/internal/compareLength.js +0 -7
  446. package/src/internal/isCoercible.js +0 -12
  447. package/src/internal/isOfTypeObject.js +0 -3
  448. package/src/internal/makeFlat.js +0 -42
  449. package/src/internal/ponyfills/Array.from.js +0 -34
  450. package/src/internal/ponyfills/Math.sign.js +0 -3
  451. package/src/internal/ponyfills/Math.trunc.js +0 -14
  452. package/src/internal/ponyfills/Number.MAX_SAFE_INTEGER.js +0 -3
  453. package/src/internal/ponyfills/Number.MIN_SAFE_INTEGER.js +0 -3
  454. package/src/internal/ponyfills/Number.isFinite.js +0 -8
  455. package/src/internal/ponyfills/Number.isInteger.js +0 -10
  456. package/src/internal/ponyfills/Number.isNaN.js +0 -8
  457. package/src/internal/ponyfills/Number.isSafeInteger.js +0 -11
  458. package/src/internal/ponyfills/Promise.allSettled.js +0 -18
  459. package/src/internal/ponyfills/Promise.any.js +0 -29
  460. package/src/internal/ponyfills/String.padEnd.js +0 -25
  461. package/src/internal/ponyfills/String.padStart.js +0 -27
  462. package/src/internal/ponyfills/String.repeat.js +0 -49
  463. package/src/internal/ponyfills/String.replaceAll.js +0 -44
  464. package/src/internal/ponyfills/String.trimEnd.js +0 -5
  465. package/src/internal/ponyfills/String.trimStart.js +0 -5
  466. package/src/invoke.js +0 -22
  467. package/src/invokeArgs.js +0 -36
  468. package/src/isArray.js +0 -27
  469. package/src/isArrayLike.js +0 -79
  470. package/src/isAsyncFunction.js +0 -23
  471. package/src/isBigInt.js +0 -24
  472. package/src/isBlank.js +0 -33
  473. package/src/isBoolean.js +0 -22
  474. package/src/isDate.js +0 -21
  475. package/src/isEmptyArray.js +0 -28
  476. package/src/isEmptyString.js +0 -28
  477. package/src/isError.js +0 -21
  478. package/src/isEven.js +0 -31
  479. package/src/isFalse.js +0 -31
  480. package/src/isFalsy.js +0 -28
  481. package/src/isFinite.js +0 -37
  482. package/src/isFloat.js +0 -36
  483. package/src/isFunction.js +0 -32
  484. package/src/isGeneratorFunction.js +0 -26
  485. package/src/isIndexed.js +0 -24
  486. package/src/isInteger.js +0 -40
  487. package/src/isInteger32.js +0 -28
  488. package/src/isIterable.js +0 -37
  489. package/src/isMap.js +0 -25
  490. package/src/isNaN.js +0 -45
  491. package/src/isNaturalNumber.js +0 -28
  492. package/src/isNegative.js +0 -27
  493. package/src/isNegativeZero.js +0 -23
  494. package/src/isNilOrEmpty.js +0 -26
  495. package/src/isNonEmptyArray.js +0 -29
  496. package/src/isNonEmptyString.js +0 -32
  497. package/src/isNonNegative.js +0 -30
  498. package/src/isNonPositive.js +0 -30
  499. package/src/isNotArray.js +0 -24
  500. package/src/isNotArrayLike.js +0 -26
  501. package/src/isNotAsyncFunction.js +0 -27
  502. package/src/isNotBoolean.js +0 -24
  503. package/src/isNotDate.js +0 -23
  504. package/src/isNotEmpty.js +0 -26
  505. package/src/isNotFinite.js +0 -31
  506. package/src/isNotFloat.js +0 -35
  507. package/src/isNotFunction.js +0 -29
  508. package/src/isNotGeneratorFunction.js +0 -27
  509. package/src/isNotInteger.js +0 -36
  510. package/src/isNotMap.js +0 -27
  511. package/src/isNotNaN.js +0 -37
  512. package/src/isNotNil.js +0 -23
  513. package/src/isNotNilOrEmpty.js +0 -28
  514. package/src/isNotNull.js +0 -24
  515. package/src/isNotNumber.js +0 -25
  516. package/src/isNotObj.js +0 -29
  517. package/src/isNotObjLike.js +0 -29
  518. package/src/isNotPair.js +0 -27
  519. package/src/isNotPlainObj.js +0 -35
  520. package/src/isNotPrimitive.js +0 -26
  521. package/src/isNotRegExp.js +0 -24
  522. package/src/isNotSet.js +0 -26
  523. package/src/isNotString.js +0 -23
  524. package/src/isNotUndefined.js +0 -24
  525. package/src/isNotValidDate.js +0 -24
  526. package/src/isNotValidNumber.js +0 -27
  527. package/src/isNull.js +0 -22
  528. package/src/isNumber.js +0 -24
  529. package/src/isObj.js +0 -31
  530. package/src/isObjLike.js +0 -30
  531. package/src/isOdd.js +0 -29
  532. package/src/isPair.js +0 -27
  533. package/src/isPlainObj.js +0 -65
  534. package/src/isPositive.js +0 -26
  535. package/src/isPositiveZero.js +0 -23
  536. package/src/isPrimitive.js +0 -46
  537. package/src/isPromise.js +0 -32
  538. package/src/isPrototypeOf.js +0 -36
  539. package/src/isRegExp.js +0 -22
  540. package/src/isSafeInteger.js +0 -40
  541. package/src/isSentinelValue.js +0 -26
  542. package/src/isSet.js +0 -24
  543. package/src/isSparseArray.js +0 -43
  544. package/src/isString.js +0 -21
  545. package/src/isSymbol.js +0 -29
  546. package/src/isThenable.js +0 -28
  547. package/src/isTrue.js +0 -27
  548. package/src/isTruthy.js +0 -28
  549. package/src/isUinteger32.js +0 -29
  550. package/src/isUndefined.js +0 -24
  551. package/src/isValidDate.js +0 -29
  552. package/src/isValidNumber.js +0 -28
  553. package/src/lastP.js +0 -54
  554. package/src/lengthEq.js +0 -24
  555. package/src/lengthGt.js +0 -24
  556. package/src/lengthGte.js +0 -26
  557. package/src/lengthLt.js +0 -24
  558. package/src/lengthLte.js +0 -25
  559. package/src/lengthNotEq.js +0 -24
  560. package/src/lensEq.js +0 -28
  561. package/src/lensIso.js +0 -51
  562. package/src/lensNotEq.js +0 -28
  563. package/src/lensNotSatisfy.js +0 -30
  564. package/src/lensSatisfies.js +0 -33
  565. package/src/lensTraverse.js +0 -56
  566. package/src/liftF.js +0 -37
  567. package/src/liftFN.js +0 -45
  568. package/src/list.js +0 -20
  569. package/src/mapIndexed.js +0 -27
  570. package/src/mergePath.js +0 -30
  571. package/src/mergePaths.js +0 -29
  572. package/src/mergeProp.js +0 -30
  573. package/src/mergeProps.js +0 -27
  574. package/src/move.js +0 -26
  575. package/src/nand.js +0 -27
  576. package/src/neither.js +0 -38
  577. package/src/noneP.js +0 -35
  578. package/src/nonePass.js +0 -32
  579. package/src/noop.js +0 -21
  580. package/src/nor.js +0 -28
  581. package/src/notAllPass.js +0 -32
  582. package/src/notAllUnique.js +0 -25
  583. package/src/notBoth.js +0 -38
  584. package/src/notEqual.js +0 -31
  585. package/src/omitBy.js +0 -25
  586. package/src/omitIndexes.js +0 -27
  587. package/src/overlaps.js +0 -32
  588. package/src/padCharsEnd.js +0 -37
  589. package/src/padCharsStart.js +0 -35
  590. package/src/padEnd.js +0 -25
  591. package/src/padStart.js +0 -23
  592. package/src/pathNotEq.js +0 -31
  593. package/src/pathOrLazy.js +0 -30
  594. package/src/paths.js +0 -26
  595. package/src/pickIndexes.js +0 -30
  596. package/src/propNotEq.js +0 -30
  597. package/src/rangeStep.js +0 -37
  598. package/src/reduceIndexed.js +0 -31
  599. package/src/reduceP.js +0 -96
  600. package/src/reduceRightP.js +0 -101
  601. package/src/rejectP.js +0 -24
  602. package/src/renameKey.js +0 -33
  603. package/src/renameKeyWith.js +0 -30
  604. package/src/renameKeys.js +0 -40
  605. package/src/renameKeysWith.js +0 -27
  606. package/src/repeatStr.js +0 -30
  607. package/src/replaceAll.js +0 -35
  608. package/src/resolveP.js +0 -28
  609. package/src/round.js +0 -26
  610. package/src/seq.js +0 -38
  611. package/src/sign.js +0 -33
  612. package/src/skipTake.js +0 -33
  613. package/src/sliceFrom.js +0 -23
  614. package/src/sliceTo.js +0 -23
  615. package/src/sortByPaths.js +0 -55
  616. package/src/sortByProp.js +0 -45
  617. package/src/sortByProps.js +0 -31
  618. package/src/spreadPath.js +0 -26
  619. package/src/spreadProp.js +0 -25
  620. package/src/stubArray.js +0 -18
  621. package/src/stubNull.js +0 -19
  622. package/src/stubObj.js +0 -19
  623. package/src/stubString.js +0 -19
  624. package/src/stubUndefined.js +0 -19
  625. package/src/subtractNum.js +0 -20
  626. package/src/thenCatchP.js +0 -27
  627. package/src/toArray.js +0 -32
  628. package/src/toInteger32.js +0 -22
  629. package/src/toNumber.js +0 -24
  630. package/src/toUinteger32.js +0 -26
  631. package/src/trimCharsEnd.js +0 -25
  632. package/src/trimCharsStart.js +0 -25
  633. package/src/trimEnd.js +0 -30
  634. package/src/trimStart.js +0 -29
  635. package/src/trunc.js +0 -33
  636. package/src/unzipObjWith.js +0 -40
  637. package/src/viewOr.js +0 -32
  638. package/src/weave.js +0 -35
  639. package/src/weaveLazy.js +0 -37
  640. package/src/zipObjWith.js +0 -27
@@ -1,39 +1,38 @@
1
- function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
2
- function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
1
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
+ function _toConsumableArray(r) { return _arrayWithoutHoles(r) || _iterableToArray(r) || _unsupportedIterableToArray(r) || _nonIterableSpread(); }
3
3
  function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
4
- function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
5
- function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
6
- function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
7
- function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
8
- function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
9
- function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
10
- function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
11
- function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
12
- function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
13
- function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
14
- function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
15
- function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
16
- function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
17
- function _wrapNativeSuper(Class) { var _cache = typeof Map === "function" ? new Map() : undefined; _wrapNativeSuper = function _wrapNativeSuper(Class) { if (Class === null || !_isNativeFunction(Class)) return Class; if (typeof Class !== "function") { throw new TypeError("Super expression must either be null or a function"); } if (typeof _cache !== "undefined") { if (_cache.has(Class)) return _cache.get(Class); _cache.set(Class, Wrapper); } function Wrapper() { return _construct(Class, arguments, _getPrototypeOf(this).constructor); } Wrapper.prototype = Object.create(Class.prototype, { constructor: { value: Wrapper, enumerable: false, writable: true, configurable: true } }); return _setPrototypeOf(Wrapper, Class); }; return _wrapNativeSuper(Class); }
18
- function _construct(Parent, args, Class) { if (_isNativeReflectConstruct()) { _construct = Reflect.construct.bind(); } else { _construct = function _construct(Parent, args, Class) { var a = [null]; a.push.apply(a, args); var Constructor = Function.bind.apply(Parent, a); var instance = new Constructor(); if (Class) _setPrototypeOf(instance, Class.prototype); return instance; }; } return _construct.apply(null, arguments); }
19
- function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
20
- function _isNativeFunction(fn) { return Function.toString.call(fn).indexOf("[native code]") !== -1; }
21
- function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
22
- function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
4
+ function _unsupportedIterableToArray(r, a) { if (r) { if ("string" == typeof r) return _arrayLikeToArray(r, a); var t = {}.toString.call(r).slice(8, -1); return "Object" === t && r.constructor && (t = r.constructor.name), "Map" === t || "Set" === t ? Array.from(r) : "Arguments" === t || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t) ? _arrayLikeToArray(r, a) : void 0; } }
5
+ function _iterableToArray(r) { if ("undefined" != typeof Symbol && null != r[Symbol.iterator] || null != r["@@iterator"]) return Array.from(r); }
6
+ function _arrayWithoutHoles(r) { if (Array.isArray(r)) return _arrayLikeToArray(r); }
7
+ function _arrayLikeToArray(r, a) { (null == a || a > r.length) && (a = r.length); for (var e = 0, n = Array(a); e < a; e++) n[e] = r[e]; return n; }
8
+ function _defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, _toPropertyKey(o.key), o); } }
9
+ function _createClass(e, r, t) { return r && _defineProperties(e.prototype, r), t && _defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
10
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
11
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
12
+ function _classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
13
+ function _callSuper(t, o, e) { return o = _getPrototypeOf(o), _possibleConstructorReturn(t, _isNativeReflectConstruct() ? Reflect.construct(o, e || [], _getPrototypeOf(t).constructor) : o.apply(t, e)); }
14
+ function _possibleConstructorReturn(t, e) { if (e && ("object" == _typeof(e) || "function" == typeof e)) return e; if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined"); return _assertThisInitialized(t); }
15
+ function _assertThisInitialized(e) { if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return e; }
16
+ function _inherits(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function"); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, writable: !0, configurable: !0 } }), Object.defineProperty(t, "prototype", { writable: !1 }), e && _setPrototypeOf(t, e); }
17
+ function _wrapNativeSuper(t) { var r = "function" == typeof Map ? new Map() : void 0; return _wrapNativeSuper = function _wrapNativeSuper(t) { if (null === t || !_isNativeFunction(t)) return t; if ("function" != typeof t) throw new TypeError("Super expression must either be null or a function"); if (void 0 !== r) { if (r.has(t)) return r.get(t); r.set(t, Wrapper); } function Wrapper() { return _construct(t, arguments, _getPrototypeOf(this).constructor); } return Wrapper.prototype = Object.create(t.prototype, { constructor: { value: Wrapper, enumerable: !1, writable: !0, configurable: !0 } }), _setPrototypeOf(Wrapper, t); }, _wrapNativeSuper(t); }
18
+ function _construct(t, e, r) { if (_isNativeReflectConstruct()) return Reflect.construct.apply(null, arguments); var o = [null]; o.push.apply(o, e); var p = new (t.bind.apply(t, o))(); return r && _setPrototypeOf(p, r.prototype), p; }
19
+ function _isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
20
+ function _isNativeFunction(t) { try { return -1 !== Function.toString.call(t).indexOf("[native code]"); } catch (n) { return "function" == typeof t; } }
21
+ function _setPrototypeOf(t, e) { return _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, _setPrototypeOf(t, e); }
22
+ function _getPrototypeOf(t) { return _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) { return t.__proto__ || Object.getPrototypeOf(t); }, _getPrototypeOf(t); }
23
23
  import { map } from 'ramda';
24
- import resolveP from '../../resolveP';
24
+ import resolveP from '../../resolveP.js';
25
25
  export var AggregatedError = /*#__PURE__*/function (_Error) {
26
- _inherits(AggregatedError, _Error);
27
- var _super = _createSuper(AggregatedError);
28
26
  function AggregatedError() {
29
27
  var _this;
30
28
  var errors = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : [];
31
29
  var message = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '';
32
30
  _classCallCheck(this, AggregatedError);
33
- _this = _super.call(this, message);
31
+ _this = _callSuper(this, AggregatedError, [message]);
34
32
  _this.errors = errors;
35
33
  return _this;
36
34
  }
35
+ _inherits(AggregatedError, _Error);
37
36
  return _createClass(AggregatedError);
38
37
  }( /*#__PURE__*/_wrapNativeSuper(Error));
39
38
  var anyPonyfill = function anyPonyfill(iterable) {
@@ -1,6 +1,6 @@
1
- import isFunction from '../../isFunction';
2
- import isNotUndefined from '../../isNotUndefined';
3
- import repeat from './String.repeat';
1
+ import isFunction from '../../isFunction.js';
2
+ import isNotUndefined from '../../isNotUndefined.js';
3
+ import repeat from './String.repeat.js';
4
4
  var padEndPonyfill = function padEndPonyfill(padString, targetLength, value) {
5
5
  // eslint-disable-next-line no-bitwise
6
6
  var finalLength = targetLength >> 0;
@@ -1,6 +1,6 @@
1
- import isFunction from '../../isFunction';
2
- import isNotUndefined from '../../isNotUndefined';
3
- import repeat from './String.repeat';
1
+ import isFunction from '../../isFunction.js';
2
+ import isNotUndefined from '../../isNotUndefined.js';
3
+ import repeat from './String.repeat.js';
4
4
  var padStartPonyfill = function padStartPonyfill(padString, targetLength, value) {
5
5
  // eslint-disable-next-line no-bitwise
6
6
  var finalLength = targetLength >> 0; // truncate if number, or convert non-number to 0;
@@ -1,5 +1,5 @@
1
- import isNotFinite from '../../isNotFinite';
2
- import isNegative from '../../isNegative';
1
+ import isNotFinite from '../../isNotFinite.js';
2
+ import isNegative from '../../isNegative.js';
3
3
  var repeat = function repeat(value, count) {
4
4
  var validCount = Number(count);
5
5
  if (validCount !== count) {
@@ -1,6 +1,6 @@
1
1
  import { replace } from 'ramda';
2
- import isRegExp from '../../isRegExp';
3
- import escapeRegExp from '../../escapeRegExp';
2
+ import isRegExp from '../../isRegExp.js';
3
+ import escapeRegExp from '../../escapeRegExp.js';
4
4
  var checkArguments = function checkArguments(searchValue, replaceValue, str) {
5
5
  if (str == null || searchValue == null || replaceValue == null) {
6
6
  throw TypeError('Input values must not be `null` or `undefined`');
package/es/invoke.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { __ } from 'ramda';
2
- import invokeArgs from './invokeArgs';
2
+ import invokeArgs from './invokeArgs.js';
3
3
 
4
4
  /**
5
5
  * Invokes the method at path of object.
package/es/invokeArgs.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { curryN, path, apply, init, bind } from 'ramda';
2
- import isNotFunction from './isNotFunction';
3
- import isEmptyArray from './isEmptyArray';
2
+ import isNotFunction from './isNotFunction.js';
3
+ import isEmptyArray from './isEmptyArray.js';
4
4
 
5
5
  /**
6
6
  * Invokes the method at path of object with given arguments.
package/es/isArray.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { curryN, pipe, type, identical } from 'ramda';
2
- import isFunction from './isFunction';
2
+ import isFunction from './isFunction.js';
3
3
 
4
4
  /**
5
5
  * Checks if input value is `Array`.
package/es/isArrayLike.js CHANGED
@@ -1,7 +1,7 @@
1
- function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
1
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
2
  import { has, curryN } from 'ramda';
3
- import isArray from './isArray';
4
- import isString from './isString';
3
+ import isArray from './isArray.js';
4
+ import isString from './isString.js';
5
5
 
6
6
  /* eslint-disable max-len */
7
7
  /**
package/es/isBlank.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { isEmpty, isNil, anyPass, test } from 'ramda';
2
- import isFalse from './isFalse';
2
+ import isFalse from './isFalse.js';
3
3
  /**
4
4
  * Returns `true` if the given value is its type's empty value, `false`, `undefined`
5
5
  * as well as strings containing only whitespace characters; `false` otherwise.
@@ -1,5 +1,5 @@
1
1
  import { both, isEmpty } from 'ramda';
2
- import isArray from './isArray';
2
+ import isArray from './isArray.js';
3
3
 
4
4
  /**
5
5
  * Checks if input value is an empty `Array`.
package/es/isEven.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { both, complement, curryN } from 'ramda';
2
- import isInteger from './isInteger';
3
- import isOdd from './isOdd';
2
+ import isInteger from './isInteger.js';
3
+ import isOdd from './isOdd.js';
4
4
 
5
5
  /**
6
6
  * Checks if value is even integer number.
package/es/isFalsy.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { complement } from 'ramda';
2
- import isTruthy from './isTruthy';
2
+ import isTruthy from './isTruthy.js';
3
3
 
4
4
  /**
5
5
  * A falsy value is a value that translates to false when evaluated in a Boolean context.
package/es/isFinite.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { bind, curryN } from 'ramda';
2
- import isFunction from './isFunction';
3
- import ponyfill from './internal/ponyfills/Number.isFinite';
2
+ import isFunction from './isFunction.js';
3
+ import ponyfill from './internal/ponyfills/Number.isFinite.js';
4
4
  export var isFinitePonyfill = curryN(1, ponyfill);
5
5
 
6
6
  /**
package/es/isFloat.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { complement, both } from 'ramda';
2
- import isInteger from './isInteger';
3
- import isFinite from './isFinite';
2
+ import isInteger from './isInteger.js';
3
+ import isFinite from './isFinite.js';
4
4
 
5
5
  /**
6
6
  * Checks whether the passed value is a `float`.
package/es/isFunction.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { anyPass, type, pipe, identical } from 'ramda';
2
- import isGeneratorFunction from './isGeneratorFunction';
3
- import isAsyncFunction from './isAsyncFunction';
2
+ import isGeneratorFunction from './isGeneratorFunction.js';
3
+ import isAsyncFunction from './isAsyncFunction.js';
4
4
 
5
5
  /**
6
6
  * Checks if input value is `Function`.
package/es/isIndexed.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { either, curryN } from 'ramda';
2
- import isArray from './isArray';
3
- import isString from './isString';
2
+ import isArray from './isArray.js';
3
+ import isString from './isString.js';
4
4
 
5
5
  /**
6
6
  * Determine if input value is an indexed data type.
package/es/isInteger.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { bind, curryN } from 'ramda';
2
- import isFunction from './isFunction';
3
- import ponyfill from './internal/ponyfills/Number.isInteger';
2
+ import isFunction from './isFunction.js';
3
+ import ponyfill from './internal/ponyfills/Number.isInteger.js';
4
4
  export var isIntegerPonyfill = curryN(1, ponyfill);
5
5
 
6
6
  /**
package/es/isInteger32.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { curryN } from 'ramda';
2
- import toInteger32 from './toInteger32';
2
+ import toInteger32 from './toInteger32.js';
3
3
 
4
4
  /**
5
5
  * Checks whether the passed value is a signed 32 bit integer.
package/es/isIterable.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { hasIn, curryN } from 'ramda';
2
- import isFunction from './isFunction';
2
+ import isFunction from './isFunction.js';
3
3
 
4
4
  /**
5
5
  * Checks whether the passed value is iterable.
package/es/isNaN.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { curryN } from 'ramda';
2
- import isFunction from './isFunction';
3
- import ponyfill from './internal/ponyfills/Number.isNaN';
2
+ import isFunction from './isFunction.js';
3
+ import ponyfill from './internal/ponyfills/Number.isNaN.js';
4
4
  export var isNaNPonyfill = curryN(1, ponyfill);
5
5
 
6
6
  /**
@@ -1,6 +1,6 @@
1
1
  import { both, complement, curryN } from 'ramda';
2
- import isInteger from './isInteger';
3
- import isNegative from './isNegative';
2
+ import isInteger from './isInteger.js';
3
+ import isNegative from './isNegative.js';
4
4
 
5
5
  /**
6
6
  * Checks if value is a natural number.
package/es/isNegative.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { both, gt, curryN } from 'ramda';
2
- import isNumber from './isNumber';
2
+ import isNumber from './isNumber.js';
3
3
 
4
4
  /**
5
5
  * Checks if value is a negative `Number` primitive or object. Zero is not considered neither
@@ -1,6 +1,5 @@
1
- import { both } from 'ramda';
2
- import isNotEmpty from './isNotEmpty';
3
- import isArray from './isArray';
1
+ import { both, isNotEmpty } from 'ramda';
2
+ import isArray from './isArray.js';
4
3
 
5
4
  /**
6
5
  * Checks if input value is not an empty `Array`.
@@ -1,7 +1,6 @@
1
- import { allPass } from 'ramda';
2
- import isString from './isString';
3
- import isNotObj from './isNotObj';
4
- import isNotEmpty from './isNotEmpty';
1
+ import { allPass, isNotEmpty } from 'ramda';
2
+ import isString from './isString.js';
3
+ import isNotObj from './isNotObj.js';
5
4
 
6
5
  /**
7
6
  * Checks if input value is not an empty `String`.
@@ -1,5 +1,5 @@
1
1
  import { both, gte, flip, curryN } from 'ramda';
2
- import isNumber from './isNumber';
2
+ import isNumber from './isNumber.js';
3
3
 
4
4
  /**
5
5
  * Checks if value is a non-negative `Number` primitive or object. This includes all positive
@@ -1,5 +1,5 @@
1
1
  import { both, lte, flip, curryN } from 'ramda';
2
- import isNumber from './isNumber';
2
+ import isNumber from './isNumber.js';
3
3
 
4
4
  /**
5
5
  * Checks if value is a non-positive `Number` primitive or object. This includes all negative
package/es/isNotArray.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { complement } from 'ramda';
2
- import isArray from './isArray';
2
+ import isArray from './isArray.js';
3
3
 
4
4
  /**
5
5
  * Checks if input value is complement of `Array`
@@ -1,5 +1,5 @@
1
1
  import { complement } from 'ramda';
2
- import isArrayLike from './isArrayLike';
2
+ import isArrayLike from './isArrayLike.js';
3
3
 
4
4
  /**
5
5
  * Tests whether or not an object is similar to an array.
@@ -1,5 +1,5 @@
1
1
  import { complement } from 'ramda';
2
- import isAsyncFunction from './isAsyncFunction';
2
+ import isAsyncFunction from './isAsyncFunction.js';
3
3
 
4
4
  /* eslint-disable max-len */
5
5
  /**
@@ -1,5 +1,5 @@
1
1
  import { complement } from 'ramda';
2
- import isBoolean from './isBoolean';
2
+ import isBoolean from './isBoolean.js';
3
3
 
4
4
  /**
5
5
  * Checks if input value is complement of `Boolean`.
package/es/isNotDate.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { complement } from 'ramda';
2
- import isDate from './isDate';
2
+ import isDate from './isDate.js';
3
3
 
4
4
  /**
5
5
  * Checks if value is complement of `Date` object.
package/es/isNotFinite.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { complement } from 'ramda';
2
- import _isFinite from './isFinite';
2
+ import _isFinite from './isFinite.js';
3
3
 
4
4
  /**
5
5
  * Checks whether the passed value is complement of finite `Number`.
package/es/isNotFloat.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { complement, curryN } from 'ramda';
2
- import isFloat from './isFloat';
2
+ import isFloat from './isFloat.js';
3
3
 
4
4
  /**
5
5
  * Checks whether the passed value is complement of a `float`.
@@ -1,5 +1,5 @@
1
1
  import { complement } from 'ramda';
2
- import isFunction from './isFunction';
2
+ import isFunction from './isFunction.js';
3
3
 
4
4
  /* eslint-disable max-len */
5
5
  /**
@@ -1,5 +1,5 @@
1
1
  import { complement } from 'ramda';
2
- import isGeneratorFunction from './isGeneratorFunction';
2
+ import isGeneratorFunction from './isGeneratorFunction.js';
3
3
 
4
4
  /* eslint-disable max-len */
5
5
  /**
@@ -1,5 +1,5 @@
1
1
  import { complement } from 'ramda';
2
- import isInteger from './isInteger';
2
+ import isInteger from './isInteger.js';
3
3
 
4
4
  /**
5
5
  * Checks whether the passed value is complement of an `integer`.
package/es/isNotMap.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { complement } from 'ramda';
2
- import isMap from './isMap';
2
+ import isMap from './isMap.js';
3
3
 
4
4
  /**
5
5
  * Checks if value is complement of `Map` object.
package/es/isNotNaN.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { complement } from 'ramda';
2
- import _isNaN from './isNaN';
2
+ import _isNaN from './isNaN.js';
3
3
 
4
4
  /**
5
5
  * Checks whether the passed value is complement of `NaN` and its type is not `Number`.
@@ -1,5 +1,5 @@
1
1
  import { complement } from 'ramda';
2
- import isNilOrEmpty from './isNilOrEmpty';
2
+ import isNilOrEmpty from './isNilOrEmpty.js';
3
3
 
4
4
  /**
5
5
  * Returns `false` if the given value is its type's empty value, `null` or `undefined`.
package/es/isNotNull.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { complement } from 'ramda';
2
- import isNull from './isNull';
2
+ import isNull from './isNull.js';
3
3
 
4
4
  /**
5
5
  * Checks if input value is complement of `null`.
package/es/isNotNumber.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { complement } from 'ramda';
2
- import isNumber from './isNumber';
2
+ import isNumber from './isNumber.js';
3
3
 
4
4
  /**
5
5
  * Checks if value is a complement of `Number` primitive or object.
package/es/isNotObj.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { complement } from 'ramda';
2
- import isObj from './isObj';
2
+ import isObj from './isObj.js';
3
3
 
4
4
  /* eslint-disable max-len */
5
5
  /**
@@ -1,5 +1,5 @@
1
1
  import { complement } from 'ramda';
2
- import isObjLike from './isObjLike';
2
+ import isObjLike from './isObjLike.js';
3
3
 
4
4
  /* eslint-disable max-len */
5
5
  /**
package/es/isNotPair.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { complement } from 'ramda';
2
- import isPair from './isPair';
2
+ import isPair from './isPair.js';
3
3
 
4
4
  /**
5
5
  * Checks if input value is complement of a pair.
@@ -1,5 +1,5 @@
1
1
  import { complement } from 'ramda';
2
- import isPlainObj from './isPlainObj';
2
+ import isPlainObj from './isPlainObj.js';
3
3
 
4
4
  /* eslint-disable max-len */
5
5
  /**
@@ -1,5 +1,5 @@
1
1
  import { complement, curryN } from 'ramda';
2
- import isPrimitive from './isPrimitive';
2
+ import isPrimitive from './isPrimitive.js';
3
3
 
4
4
  /**
5
5
  * Checks if value is not a primitive data type. There are 6 primitive data types: `string`, `number`, `bigint`, `boolean`, `undefined`, `symbol` and a special case of `null`.
package/es/isNotRegExp.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { complement } from 'ramda';
2
- import isRegExp from './isRegExp';
2
+ import isRegExp from './isRegExp.js';
3
3
 
4
4
  /**
5
5
  * Checks if value is complement of `RegExp` object.
package/es/isNotSet.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { complement } from 'ramda';
2
- import isSet from './isSet';
2
+ import isSet from './isSet.js';
3
3
 
4
4
  /**
5
5
  * Checks if value is complement of `Set` object.
package/es/isNotString.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { complement } from 'ramda';
2
- import isString from './isString';
2
+ import isString from './isString.js';
3
3
 
4
4
  /**
5
5
  * Checks if input value is complement of `String`.
@@ -1,5 +1,5 @@
1
1
  import { complement } from 'ramda';
2
- import isUndefined from './isUndefined';
2
+ import isUndefined from './isUndefined.js';
3
3
 
4
4
  /**
5
5
  * Checks if input value is complement `undefined`.
@@ -1,5 +1,5 @@
1
1
  import { complement } from 'ramda';
2
- import isValidDate from './isValidDate';
2
+ import isValidDate from './isValidDate.js';
3
3
 
4
4
  /**
5
5
  * Checks if value is complement of valid `Date` object.
@@ -1,5 +1,5 @@
1
1
  import { complement } from 'ramda';
2
- import isValidNumber from './isValidNumber';
2
+ import isValidNumber from './isValidNumber.js';
3
3
 
4
4
  /**
5
5
  * Checks if value is not a valid `Number`. A valid `Number` is a number that is not `NaN`,
package/es/isObj.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { both, either, curryN } from 'ramda';
2
- import isNotNull from './isNotNull';
3
- import isFunction from './isFunction';
4
- import isOfTypeObject from './internal/isOfTypeObject';
2
+ import isNotNull from './isNotNull.js';
3
+ import isFunction from './isFunction.js';
4
+ import isOfTypeObject from './internal/isOfTypeObject.js';
5
5
 
6
6
  /* eslint-disable max-len */
7
7
  /**
package/es/isObjLike.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { both, curryN } from 'ramda';
2
- import isNotNull from './isNotNull';
3
- import isOfTypeObject from './internal/isOfTypeObject';
2
+ import isNotNull from './isNotNull.js';
3
+ import isOfTypeObject from './internal/isOfTypeObject.js';
4
4
 
5
5
  /* eslint-disable max-len */
6
6
  /**
package/es/isOdd.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { both, pipe, modulo, flip, equals, complement, curryN } from 'ramda';
2
- import isInteger from './isInteger';
2
+ import isInteger from './isInteger.js';
3
3
 
4
4
  /**
5
5
  * Checks if value is odd integer number.
package/es/isPair.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import { both, equals, length, pipe, curryN } from 'ramda';
2
- import isArray from './isArray';
2
+ import isArray from './isArray.js';
3
3
 
4
4
  /**
5
5
  * Checks if input value is a pair.
package/es/isPlainObj.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import { pipe, type, identical, both, equals, toString, pathSatisfies, curryN } from 'ramda';
2
- import isNull from './isNull';
3
- import isObjLike from './isObjLike';
4
- import isFunction from './isFunction';
2
+ import isNull from './isNull.js';
3
+ import isObjLike from './isObjLike.js';
4
+ import isFunction from './isFunction.js';
5
5
  var isObject = pipe(type, identical('Object'));
6
6
  var isObjectConstructor = pipe(toString, equals(toString(Object)));
7
7
  var hasObjectConstructor = pathSatisfies(both(isFunction, isObjectConstructor), ['constructor']);