jekyll-esm 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1087) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +17 -0
  3. data/.rspec +3 -0
  4. data/.travis.yml +6 -0
  5. data/CODE_OF_CONDUCT.md +74 -0
  6. data/Gemfile +7 -0
  7. data/Gemfile.lock +126 -0
  8. data/Guardfile +70 -0
  9. data/LICENSE.txt +21 -0
  10. data/README.md +65 -0
  11. data/Rakefile +6 -0
  12. data/bin/console +14 -0
  13. data/bin/setup +8 -0
  14. data/jekyll-esm.gemspec +40 -0
  15. data/lib/jekyll/esm.rb +64 -0
  16. data/lib/jekyll/esm/version.rb +5 -0
  17. data/node_modules/.bin/yarn +1 -0
  18. data/node_modules/.bin/yarnpkg +1 -0
  19. data/node_modules/.yarn-integrity +18 -0
  20. data/node_modules/lodash/LICENSE +47 -0
  21. data/node_modules/lodash/README.md +39 -0
  22. data/node_modules/lodash/_DataView.js +7 -0
  23. data/node_modules/lodash/_Hash.js +32 -0
  24. data/node_modules/lodash/_LazyWrapper.js +28 -0
  25. data/node_modules/lodash/_ListCache.js +32 -0
  26. data/node_modules/lodash/_LodashWrapper.js +22 -0
  27. data/node_modules/lodash/_Map.js +7 -0
  28. data/node_modules/lodash/_MapCache.js +32 -0
  29. data/node_modules/lodash/_Promise.js +7 -0
  30. data/node_modules/lodash/_Set.js +7 -0
  31. data/node_modules/lodash/_SetCache.js +27 -0
  32. data/node_modules/lodash/_Stack.js +27 -0
  33. data/node_modules/lodash/_Symbol.js +6 -0
  34. data/node_modules/lodash/_Uint8Array.js +6 -0
  35. data/node_modules/lodash/_WeakMap.js +7 -0
  36. data/node_modules/lodash/_apply.js +21 -0
  37. data/node_modules/lodash/_arrayAggregator.js +22 -0
  38. data/node_modules/lodash/_arrayEach.js +22 -0
  39. data/node_modules/lodash/_arrayEachRight.js +21 -0
  40. data/node_modules/lodash/_arrayEvery.js +23 -0
  41. data/node_modules/lodash/_arrayFilter.js +25 -0
  42. data/node_modules/lodash/_arrayIncludes.js +17 -0
  43. data/node_modules/lodash/_arrayIncludesWith.js +22 -0
  44. data/node_modules/lodash/_arrayLikeKeys.js +49 -0
  45. data/node_modules/lodash/_arrayMap.js +21 -0
  46. data/node_modules/lodash/_arrayPush.js +20 -0
  47. data/node_modules/lodash/_arrayReduce.js +26 -0
  48. data/node_modules/lodash/_arrayReduceRight.js +24 -0
  49. data/node_modules/lodash/_arraySample.js +15 -0
  50. data/node_modules/lodash/_arraySampleSize.js +17 -0
  51. data/node_modules/lodash/_arrayShuffle.js +15 -0
  52. data/node_modules/lodash/_arraySome.js +23 -0
  53. data/node_modules/lodash/_asciiSize.js +12 -0
  54. data/node_modules/lodash/_asciiToArray.js +12 -0
  55. data/node_modules/lodash/_asciiWords.js +15 -0
  56. data/node_modules/lodash/_assignMergeValue.js +20 -0
  57. data/node_modules/lodash/_assignValue.js +28 -0
  58. data/node_modules/lodash/_assocIndexOf.js +21 -0
  59. data/node_modules/lodash/_baseAggregator.js +21 -0
  60. data/node_modules/lodash/_baseAssign.js +17 -0
  61. data/node_modules/lodash/_baseAssignIn.js +17 -0
  62. data/node_modules/lodash/_baseAssignValue.js +25 -0
  63. data/node_modules/lodash/_baseAt.js +23 -0
  64. data/node_modules/lodash/_baseClamp.js +22 -0
  65. data/node_modules/lodash/_baseClone.js +166 -0
  66. data/node_modules/lodash/_baseConforms.js +18 -0
  67. data/node_modules/lodash/_baseConformsTo.js +27 -0
  68. data/node_modules/lodash/_baseCreate.js +30 -0
  69. data/node_modules/lodash/_baseDelay.js +21 -0
  70. data/node_modules/lodash/_baseDifference.js +67 -0
  71. data/node_modules/lodash/_baseEach.js +14 -0
  72. data/node_modules/lodash/_baseEachRight.js +14 -0
  73. data/node_modules/lodash/_baseEvery.js +21 -0
  74. data/node_modules/lodash/_baseExtremum.js +32 -0
  75. data/node_modules/lodash/_baseFill.js +32 -0
  76. data/node_modules/lodash/_baseFilter.js +21 -0
  77. data/node_modules/lodash/_baseFindIndex.js +24 -0
  78. data/node_modules/lodash/_baseFindKey.js +23 -0
  79. data/node_modules/lodash/_baseFlatten.js +38 -0
  80. data/node_modules/lodash/_baseFor.js +16 -0
  81. data/node_modules/lodash/_baseForOwn.js +16 -0
  82. data/node_modules/lodash/_baseForOwnRight.js +16 -0
  83. data/node_modules/lodash/_baseForRight.js +15 -0
  84. data/node_modules/lodash/_baseFunctions.js +19 -0
  85. data/node_modules/lodash/_baseGet.js +24 -0
  86. data/node_modules/lodash/_baseGetAllKeys.js +20 -0
  87. data/node_modules/lodash/_baseGetTag.js +28 -0
  88. data/node_modules/lodash/_baseGt.js +14 -0
  89. data/node_modules/lodash/_baseHas.js +19 -0
  90. data/node_modules/lodash/_baseHasIn.js +13 -0
  91. data/node_modules/lodash/_baseInRange.js +18 -0
  92. data/node_modules/lodash/_baseIndexOf.js +20 -0
  93. data/node_modules/lodash/_baseIndexOfWith.js +23 -0
  94. data/node_modules/lodash/_baseIntersection.js +74 -0
  95. data/node_modules/lodash/_baseInverter.js +21 -0
  96. data/node_modules/lodash/_baseInvoke.js +24 -0
  97. data/node_modules/lodash/_baseIsArguments.js +18 -0
  98. data/node_modules/lodash/_baseIsArrayBuffer.js +17 -0
  99. data/node_modules/lodash/_baseIsDate.js +18 -0
  100. data/node_modules/lodash/_baseIsEqual.js +28 -0
  101. data/node_modules/lodash/_baseIsEqualDeep.js +83 -0
  102. data/node_modules/lodash/_baseIsMap.js +18 -0
  103. data/node_modules/lodash/_baseIsMatch.js +62 -0
  104. data/node_modules/lodash/_baseIsNaN.js +12 -0
  105. data/node_modules/lodash/_baseIsNative.js +47 -0
  106. data/node_modules/lodash/_baseIsRegExp.js +18 -0
  107. data/node_modules/lodash/_baseIsSet.js +18 -0
  108. data/node_modules/lodash/_baseIsTypedArray.js +60 -0
  109. data/node_modules/lodash/_baseIteratee.js +31 -0
  110. data/node_modules/lodash/_baseKeys.js +30 -0
  111. data/node_modules/lodash/_baseKeysIn.js +33 -0
  112. data/node_modules/lodash/_baseLodash.js +10 -0
  113. data/node_modules/lodash/_baseLt.js +14 -0
  114. data/node_modules/lodash/_baseMap.js +22 -0
  115. data/node_modules/lodash/_baseMatches.js +22 -0
  116. data/node_modules/lodash/_baseMatchesProperty.js +33 -0
  117. data/node_modules/lodash/_baseMean.js +20 -0
  118. data/node_modules/lodash/_baseMerge.js +42 -0
  119. data/node_modules/lodash/_baseMergeDeep.js +94 -0
  120. data/node_modules/lodash/_baseNth.js +20 -0
  121. data/node_modules/lodash/_baseOrderBy.js +49 -0
  122. data/node_modules/lodash/_basePick.js +19 -0
  123. data/node_modules/lodash/_basePickBy.js +30 -0
  124. data/node_modules/lodash/_baseProperty.js +14 -0
  125. data/node_modules/lodash/_basePropertyDeep.js +16 -0
  126. data/node_modules/lodash/_basePropertyOf.js +14 -0
  127. data/node_modules/lodash/_basePullAll.js +51 -0
  128. data/node_modules/lodash/_basePullAt.js +37 -0
  129. data/node_modules/lodash/_baseRandom.js +18 -0
  130. data/node_modules/lodash/_baseRange.js +28 -0
  131. data/node_modules/lodash/_baseReduce.js +23 -0
  132. data/node_modules/lodash/_baseRepeat.js +35 -0
  133. data/node_modules/lodash/_baseRest.js +17 -0
  134. data/node_modules/lodash/_baseSample.js +15 -0
  135. data/node_modules/lodash/_baseSampleSize.js +18 -0
  136. data/node_modules/lodash/_baseSet.js +51 -0
  137. data/node_modules/lodash/_baseSetData.js +17 -0
  138. data/node_modules/lodash/_baseSetToString.js +22 -0
  139. data/node_modules/lodash/_baseShuffle.js +15 -0
  140. data/node_modules/lodash/_baseSlice.js +31 -0
  141. data/node_modules/lodash/_baseSome.js +22 -0
  142. data/node_modules/lodash/_baseSortBy.js +21 -0
  143. data/node_modules/lodash/_baseSortedIndex.js +42 -0
  144. data/node_modules/lodash/_baseSortedIndexBy.js +67 -0
  145. data/node_modules/lodash/_baseSortedUniq.js +30 -0
  146. data/node_modules/lodash/_baseSum.js +24 -0
  147. data/node_modules/lodash/_baseTimes.js +20 -0
  148. data/node_modules/lodash/_baseToNumber.js +24 -0
  149. data/node_modules/lodash/_baseToPairs.js +18 -0
  150. data/node_modules/lodash/_baseToString.js +37 -0
  151. data/node_modules/lodash/_baseTrim.js +19 -0
  152. data/node_modules/lodash/_baseUnary.js +14 -0
  153. data/node_modules/lodash/_baseUniq.js +72 -0
  154. data/node_modules/lodash/_baseUnset.js +20 -0
  155. data/node_modules/lodash/_baseUpdate.js +18 -0
  156. data/node_modules/lodash/_baseValues.js +19 -0
  157. data/node_modules/lodash/_baseWhile.js +26 -0
  158. data/node_modules/lodash/_baseWrapperValue.js +25 -0
  159. data/node_modules/lodash/_baseXor.js +36 -0
  160. data/node_modules/lodash/_baseZipObject.js +23 -0
  161. data/node_modules/lodash/_cacheHas.js +13 -0
  162. data/node_modules/lodash/_castArrayLikeObject.js +14 -0
  163. data/node_modules/lodash/_castFunction.js +14 -0
  164. data/node_modules/lodash/_castPath.js +21 -0
  165. data/node_modules/lodash/_castRest.js +14 -0
  166. data/node_modules/lodash/_castSlice.js +18 -0
  167. data/node_modules/lodash/_charsEndIndex.js +19 -0
  168. data/node_modules/lodash/_charsStartIndex.js +20 -0
  169. data/node_modules/lodash/_cloneArrayBuffer.js +16 -0
  170. data/node_modules/lodash/_cloneBuffer.js +35 -0
  171. data/node_modules/lodash/_cloneDataView.js +16 -0
  172. data/node_modules/lodash/_cloneRegExp.js +17 -0
  173. data/node_modules/lodash/_cloneSymbol.js +18 -0
  174. data/node_modules/lodash/_cloneTypedArray.js +16 -0
  175. data/node_modules/lodash/_compareAscending.js +41 -0
  176. data/node_modules/lodash/_compareMultiple.js +44 -0
  177. data/node_modules/lodash/_composeArgs.js +39 -0
  178. data/node_modules/lodash/_composeArgsRight.js +41 -0
  179. data/node_modules/lodash/_copyArray.js +20 -0
  180. data/node_modules/lodash/_copyObject.js +40 -0
  181. data/node_modules/lodash/_copySymbols.js +16 -0
  182. data/node_modules/lodash/_copySymbolsIn.js +16 -0
  183. data/node_modules/lodash/_coreJsData.js +6 -0
  184. data/node_modules/lodash/_countHolders.js +21 -0
  185. data/node_modules/lodash/_createAggregator.js +23 -0
  186. data/node_modules/lodash/_createAssigner.js +37 -0
  187. data/node_modules/lodash/_createBaseEach.js +32 -0
  188. data/node_modules/lodash/_createBaseFor.js +25 -0
  189. data/node_modules/lodash/_createBind.js +28 -0
  190. data/node_modules/lodash/_createCaseFirst.js +33 -0
  191. data/node_modules/lodash/_createCompounder.js +24 -0
  192. data/node_modules/lodash/_createCtor.js +37 -0
  193. data/node_modules/lodash/_createCurry.js +46 -0
  194. data/node_modules/lodash/_createFind.js +25 -0
  195. data/node_modules/lodash/_createFlow.js +78 -0
  196. data/node_modules/lodash/_createHybrid.js +92 -0
  197. data/node_modules/lodash/_createInverter.js +17 -0
  198. data/node_modules/lodash/_createMathOperation.js +38 -0
  199. data/node_modules/lodash/_createOver.js +27 -0
  200. data/node_modules/lodash/_createPadding.js +33 -0
  201. data/node_modules/lodash/_createPartial.js +43 -0
  202. data/node_modules/lodash/_createRange.js +30 -0
  203. data/node_modules/lodash/_createRecurry.js +56 -0
  204. data/node_modules/lodash/_createRelationalOperation.js +20 -0
  205. data/node_modules/lodash/_createRound.js +35 -0
  206. data/node_modules/lodash/_createSet.js +19 -0
  207. data/node_modules/lodash/_createToPairs.js +30 -0
  208. data/node_modules/lodash/_createWrap.js +106 -0
  209. data/node_modules/lodash/_customDefaultsAssignIn.js +29 -0
  210. data/node_modules/lodash/_customDefaultsMerge.js +28 -0
  211. data/node_modules/lodash/_customOmitClone.js +16 -0
  212. data/node_modules/lodash/_deburrLetter.js +71 -0
  213. data/node_modules/lodash/_defineProperty.js +11 -0
  214. data/node_modules/lodash/_equalArrays.js +84 -0
  215. data/node_modules/lodash/_equalByTag.js +112 -0
  216. data/node_modules/lodash/_equalObjects.js +90 -0
  217. data/node_modules/lodash/_escapeHtmlChar.js +21 -0
  218. data/node_modules/lodash/_escapeStringChar.js +22 -0
  219. data/node_modules/lodash/_flatRest.js +16 -0
  220. data/node_modules/lodash/_freeGlobal.js +4 -0
  221. data/node_modules/lodash/_getAllKeys.js +16 -0
  222. data/node_modules/lodash/_getAllKeysIn.js +17 -0
  223. data/node_modules/lodash/_getData.js +15 -0
  224. data/node_modules/lodash/_getFuncName.js +31 -0
  225. data/node_modules/lodash/_getHolder.js +13 -0
  226. data/node_modules/lodash/_getMapData.js +18 -0
  227. data/node_modules/lodash/_getMatchData.js +24 -0
  228. data/node_modules/lodash/_getNative.js +17 -0
  229. data/node_modules/lodash/_getPrototype.js +6 -0
  230. data/node_modules/lodash/_getRawTag.js +46 -0
  231. data/node_modules/lodash/_getSymbols.js +30 -0
  232. data/node_modules/lodash/_getSymbolsIn.js +25 -0
  233. data/node_modules/lodash/_getTag.js +58 -0
  234. data/node_modules/lodash/_getValue.js +13 -0
  235. data/node_modules/lodash/_getView.js +33 -0
  236. data/node_modules/lodash/_getWrapDetails.js +17 -0
  237. data/node_modules/lodash/_hasPath.js +39 -0
  238. data/node_modules/lodash/_hasUnicode.js +26 -0
  239. data/node_modules/lodash/_hasUnicodeWord.js +15 -0
  240. data/node_modules/lodash/_hashClear.js +15 -0
  241. data/node_modules/lodash/_hashDelete.js +17 -0
  242. data/node_modules/lodash/_hashGet.js +30 -0
  243. data/node_modules/lodash/_hashHas.js +23 -0
  244. data/node_modules/lodash/_hashSet.js +23 -0
  245. data/node_modules/lodash/_initCloneArray.js +26 -0
  246. data/node_modules/lodash/_initCloneByTag.js +77 -0
  247. data/node_modules/lodash/_initCloneObject.js +18 -0
  248. data/node_modules/lodash/_insertWrapDetails.js +23 -0
  249. data/node_modules/lodash/_isFlattenable.js +20 -0
  250. data/node_modules/lodash/_isIndex.js +25 -0
  251. data/node_modules/lodash/_isIterateeCall.js +30 -0
  252. data/node_modules/lodash/_isKey.js +29 -0
  253. data/node_modules/lodash/_isKeyable.js +15 -0
  254. data/node_modules/lodash/_isLaziable.js +28 -0
  255. data/node_modules/lodash/_isMaskable.js +14 -0
  256. data/node_modules/lodash/_isMasked.js +20 -0
  257. data/node_modules/lodash/_isPrototype.js +18 -0
  258. data/node_modules/lodash/_isStrictComparable.js +15 -0
  259. data/node_modules/lodash/_iteratorToArray.js +18 -0
  260. data/node_modules/lodash/_lazyClone.js +23 -0
  261. data/node_modules/lodash/_lazyReverse.js +23 -0
  262. data/node_modules/lodash/_lazyValue.js +69 -0
  263. data/node_modules/lodash/_listCacheClear.js +13 -0
  264. data/node_modules/lodash/_listCacheDelete.js +35 -0
  265. data/node_modules/lodash/_listCacheGet.js +19 -0
  266. data/node_modules/lodash/_listCacheHas.js +16 -0
  267. data/node_modules/lodash/_listCacheSet.js +26 -0
  268. data/node_modules/lodash/_mapCacheClear.js +21 -0
  269. data/node_modules/lodash/_mapCacheDelete.js +18 -0
  270. data/node_modules/lodash/_mapCacheGet.js +16 -0
  271. data/node_modules/lodash/_mapCacheHas.js +16 -0
  272. data/node_modules/lodash/_mapCacheSet.js +22 -0
  273. data/node_modules/lodash/_mapToArray.js +18 -0
  274. data/node_modules/lodash/_matchesStrictComparable.js +20 -0
  275. data/node_modules/lodash/_memoizeCapped.js +26 -0
  276. data/node_modules/lodash/_mergeData.js +90 -0
  277. data/node_modules/lodash/_metaMap.js +6 -0
  278. data/node_modules/lodash/_nativeCreate.js +6 -0
  279. data/node_modules/lodash/_nativeKeys.js +6 -0
  280. data/node_modules/lodash/_nativeKeysIn.js +20 -0
  281. data/node_modules/lodash/_nodeUtil.js +30 -0
  282. data/node_modules/lodash/_objectToString.js +22 -0
  283. data/node_modules/lodash/_overArg.js +15 -0
  284. data/node_modules/lodash/_overRest.js +36 -0
  285. data/node_modules/lodash/_parent.js +16 -0
  286. data/node_modules/lodash/_reEscape.js +4 -0
  287. data/node_modules/lodash/_reEvaluate.js +4 -0
  288. data/node_modules/lodash/_reInterpolate.js +4 -0
  289. data/node_modules/lodash/_realNames.js +4 -0
  290. data/node_modules/lodash/_reorder.js +29 -0
  291. data/node_modules/lodash/_replaceHolders.js +29 -0
  292. data/node_modules/lodash/_root.js +9 -0
  293. data/node_modules/lodash/_safeGet.js +21 -0
  294. data/node_modules/lodash/_setCacheAdd.js +19 -0
  295. data/node_modules/lodash/_setCacheHas.js +14 -0
  296. data/node_modules/lodash/_setData.js +20 -0
  297. data/node_modules/lodash/_setToArray.js +18 -0
  298. data/node_modules/lodash/_setToPairs.js +18 -0
  299. data/node_modules/lodash/_setToString.js +14 -0
  300. data/node_modules/lodash/_setWrapToString.js +21 -0
  301. data/node_modules/lodash/_shortOut.js +37 -0
  302. data/node_modules/lodash/_shuffleSelf.js +28 -0
  303. data/node_modules/lodash/_stackClear.js +15 -0
  304. data/node_modules/lodash/_stackDelete.js +18 -0
  305. data/node_modules/lodash/_stackGet.js +14 -0
  306. data/node_modules/lodash/_stackHas.js +14 -0
  307. data/node_modules/lodash/_stackSet.js +34 -0
  308. data/node_modules/lodash/_strictIndexOf.js +23 -0
  309. data/node_modules/lodash/_strictLastIndexOf.js +21 -0
  310. data/node_modules/lodash/_stringSize.js +18 -0
  311. data/node_modules/lodash/_stringToArray.js +18 -0
  312. data/node_modules/lodash/_stringToPath.js +27 -0
  313. data/node_modules/lodash/_toKey.js +21 -0
  314. data/node_modules/lodash/_toSource.js +26 -0
  315. data/node_modules/lodash/_trimmedEndIndex.js +19 -0
  316. data/node_modules/lodash/_unescapeHtmlChar.js +21 -0
  317. data/node_modules/lodash/_unicodeSize.js +44 -0
  318. data/node_modules/lodash/_unicodeToArray.js +40 -0
  319. data/node_modules/lodash/_unicodeWords.js +69 -0
  320. data/node_modules/lodash/_updateWrapDetails.js +46 -0
  321. data/node_modules/lodash/_wrapperClone.js +23 -0
  322. data/node_modules/lodash/add.js +22 -0
  323. data/node_modules/lodash/after.js +42 -0
  324. data/node_modules/lodash/array.js +67 -0
  325. data/node_modules/lodash/ary.js +29 -0
  326. data/node_modules/lodash/assign.js +58 -0
  327. data/node_modules/lodash/assignIn.js +40 -0
  328. data/node_modules/lodash/assignInWith.js +38 -0
  329. data/node_modules/lodash/assignWith.js +37 -0
  330. data/node_modules/lodash/at.js +23 -0
  331. data/node_modules/lodash/attempt.js +35 -0
  332. data/node_modules/lodash/before.js +40 -0
  333. data/node_modules/lodash/bind.js +57 -0
  334. data/node_modules/lodash/bindAll.js +41 -0
  335. data/node_modules/lodash/bindKey.js +68 -0
  336. data/node_modules/lodash/camelCase.js +29 -0
  337. data/node_modules/lodash/capitalize.js +23 -0
  338. data/node_modules/lodash/castArray.js +44 -0
  339. data/node_modules/lodash/ceil.js +26 -0
  340. data/node_modules/lodash/chain.js +38 -0
  341. data/node_modules/lodash/chunk.js +50 -0
  342. data/node_modules/lodash/clamp.js +39 -0
  343. data/node_modules/lodash/clone.js +36 -0
  344. data/node_modules/lodash/cloneDeep.js +29 -0
  345. data/node_modules/lodash/cloneDeepWith.js +40 -0
  346. data/node_modules/lodash/cloneWith.js +42 -0
  347. data/node_modules/lodash/collection.js +30 -0
  348. data/node_modules/lodash/commit.js +33 -0
  349. data/node_modules/lodash/compact.js +31 -0
  350. data/node_modules/lodash/concat.js +43 -0
  351. data/node_modules/lodash/cond.js +60 -0
  352. data/node_modules/lodash/conforms.js +35 -0
  353. data/node_modules/lodash/conformsTo.js +32 -0
  354. data/node_modules/lodash/constant.js +26 -0
  355. data/node_modules/lodash/core.js +3877 -0
  356. data/node_modules/lodash/core.min.js +29 -0
  357. data/node_modules/lodash/countBy.js +40 -0
  358. data/node_modules/lodash/create.js +43 -0
  359. data/node_modules/lodash/curry.js +57 -0
  360. data/node_modules/lodash/curryRight.js +54 -0
  361. data/node_modules/lodash/date.js +3 -0
  362. data/node_modules/lodash/debounce.js +191 -0
  363. data/node_modules/lodash/deburr.js +45 -0
  364. data/node_modules/lodash/defaultTo.js +25 -0
  365. data/node_modules/lodash/defaults.js +64 -0
  366. data/node_modules/lodash/defaultsDeep.js +30 -0
  367. data/node_modules/lodash/defer.js +26 -0
  368. data/node_modules/lodash/delay.js +28 -0
  369. data/node_modules/lodash/difference.js +33 -0
  370. data/node_modules/lodash/differenceBy.js +44 -0
  371. data/node_modules/lodash/differenceWith.js +40 -0
  372. data/node_modules/lodash/divide.js +22 -0
  373. data/node_modules/lodash/drop.js +38 -0
  374. data/node_modules/lodash/dropRight.js +39 -0
  375. data/node_modules/lodash/dropRightWhile.js +45 -0
  376. data/node_modules/lodash/dropWhile.js +45 -0
  377. data/node_modules/lodash/each.js +1 -0
  378. data/node_modules/lodash/eachRight.js +1 -0
  379. data/node_modules/lodash/endsWith.js +43 -0
  380. data/node_modules/lodash/entries.js +1 -0
  381. data/node_modules/lodash/entriesIn.js +1 -0
  382. data/node_modules/lodash/eq.js +37 -0
  383. data/node_modules/lodash/escape.js +43 -0
  384. data/node_modules/lodash/escapeRegExp.js +32 -0
  385. data/node_modules/lodash/every.js +56 -0
  386. data/node_modules/lodash/extend.js +1 -0
  387. data/node_modules/lodash/extendWith.js +1 -0
  388. data/node_modules/lodash/fill.js +45 -0
  389. data/node_modules/lodash/filter.js +52 -0
  390. data/node_modules/lodash/find.js +42 -0
  391. data/node_modules/lodash/findIndex.js +55 -0
  392. data/node_modules/lodash/findKey.js +44 -0
  393. data/node_modules/lodash/findLast.js +25 -0
  394. data/node_modules/lodash/findLastIndex.js +59 -0
  395. data/node_modules/lodash/findLastKey.js +44 -0
  396. data/node_modules/lodash/first.js +1 -0
  397. data/node_modules/lodash/flake.lock +40 -0
  398. data/node_modules/lodash/flake.nix +20 -0
  399. data/node_modules/lodash/flatMap.js +29 -0
  400. data/node_modules/lodash/flatMapDeep.js +31 -0
  401. data/node_modules/lodash/flatMapDepth.js +31 -0
  402. data/node_modules/lodash/flatten.js +22 -0
  403. data/node_modules/lodash/flattenDeep.js +25 -0
  404. data/node_modules/lodash/flattenDepth.js +33 -0
  405. data/node_modules/lodash/flip.js +28 -0
  406. data/node_modules/lodash/floor.js +26 -0
  407. data/node_modules/lodash/flow.js +27 -0
  408. data/node_modules/lodash/flowRight.js +26 -0
  409. data/node_modules/lodash/forEach.js +41 -0
  410. data/node_modules/lodash/forEachRight.js +31 -0
  411. data/node_modules/lodash/forIn.js +39 -0
  412. data/node_modules/lodash/forInRight.js +37 -0
  413. data/node_modules/lodash/forOwn.js +36 -0
  414. data/node_modules/lodash/forOwnRight.js +34 -0
  415. data/node_modules/lodash/fp.js +2 -0
  416. data/node_modules/lodash/fp/F.js +1 -0
  417. data/node_modules/lodash/fp/T.js +1 -0
  418. data/node_modules/lodash/fp/__.js +1 -0
  419. data/node_modules/lodash/fp/_baseConvert.js +569 -0
  420. data/node_modules/lodash/fp/_convertBrowser.js +18 -0
  421. data/node_modules/lodash/fp/_falseOptions.js +7 -0
  422. data/node_modules/lodash/fp/_mapping.js +358 -0
  423. data/node_modules/lodash/fp/_util.js +16 -0
  424. data/node_modules/lodash/fp/add.js +5 -0
  425. data/node_modules/lodash/fp/after.js +5 -0
  426. data/node_modules/lodash/fp/all.js +1 -0
  427. data/node_modules/lodash/fp/allPass.js +1 -0
  428. data/node_modules/lodash/fp/always.js +1 -0
  429. data/node_modules/lodash/fp/any.js +1 -0
  430. data/node_modules/lodash/fp/anyPass.js +1 -0
  431. data/node_modules/lodash/fp/apply.js +1 -0
  432. data/node_modules/lodash/fp/array.js +2 -0
  433. data/node_modules/lodash/fp/ary.js +5 -0
  434. data/node_modules/lodash/fp/assign.js +5 -0
  435. data/node_modules/lodash/fp/assignAll.js +5 -0
  436. data/node_modules/lodash/fp/assignAllWith.js +5 -0
  437. data/node_modules/lodash/fp/assignIn.js +5 -0
  438. data/node_modules/lodash/fp/assignInAll.js +5 -0
  439. data/node_modules/lodash/fp/assignInAllWith.js +5 -0
  440. data/node_modules/lodash/fp/assignInWith.js +5 -0
  441. data/node_modules/lodash/fp/assignWith.js +5 -0
  442. data/node_modules/lodash/fp/assoc.js +1 -0
  443. data/node_modules/lodash/fp/assocPath.js +1 -0
  444. data/node_modules/lodash/fp/at.js +5 -0
  445. data/node_modules/lodash/fp/attempt.js +5 -0
  446. data/node_modules/lodash/fp/before.js +5 -0
  447. data/node_modules/lodash/fp/bind.js +5 -0
  448. data/node_modules/lodash/fp/bindAll.js +5 -0
  449. data/node_modules/lodash/fp/bindKey.js +5 -0
  450. data/node_modules/lodash/fp/camelCase.js +5 -0
  451. data/node_modules/lodash/fp/capitalize.js +5 -0
  452. data/node_modules/lodash/fp/castArray.js +5 -0
  453. data/node_modules/lodash/fp/ceil.js +5 -0
  454. data/node_modules/lodash/fp/chain.js +5 -0
  455. data/node_modules/lodash/fp/chunk.js +5 -0
  456. data/node_modules/lodash/fp/clamp.js +5 -0
  457. data/node_modules/lodash/fp/clone.js +5 -0
  458. data/node_modules/lodash/fp/cloneDeep.js +5 -0
  459. data/node_modules/lodash/fp/cloneDeepWith.js +5 -0
  460. data/node_modules/lodash/fp/cloneWith.js +5 -0
  461. data/node_modules/lodash/fp/collection.js +2 -0
  462. data/node_modules/lodash/fp/commit.js +5 -0
  463. data/node_modules/lodash/fp/compact.js +5 -0
  464. data/node_modules/lodash/fp/complement.js +1 -0
  465. data/node_modules/lodash/fp/compose.js +1 -0
  466. data/node_modules/lodash/fp/concat.js +5 -0
  467. data/node_modules/lodash/fp/cond.js +5 -0
  468. data/node_modules/lodash/fp/conforms.js +1 -0
  469. data/node_modules/lodash/fp/conformsTo.js +5 -0
  470. data/node_modules/lodash/fp/constant.js +5 -0
  471. data/node_modules/lodash/fp/contains.js +1 -0
  472. data/node_modules/lodash/fp/convert.js +18 -0
  473. data/node_modules/lodash/fp/countBy.js +5 -0
  474. data/node_modules/lodash/fp/create.js +5 -0
  475. data/node_modules/lodash/fp/curry.js +5 -0
  476. data/node_modules/lodash/fp/curryN.js +5 -0
  477. data/node_modules/lodash/fp/curryRight.js +5 -0
  478. data/node_modules/lodash/fp/curryRightN.js +5 -0
  479. data/node_modules/lodash/fp/date.js +2 -0
  480. data/node_modules/lodash/fp/debounce.js +5 -0
  481. data/node_modules/lodash/fp/deburr.js +5 -0
  482. data/node_modules/lodash/fp/defaultTo.js +5 -0
  483. data/node_modules/lodash/fp/defaults.js +5 -0
  484. data/node_modules/lodash/fp/defaultsAll.js +5 -0
  485. data/node_modules/lodash/fp/defaultsDeep.js +5 -0
  486. data/node_modules/lodash/fp/defaultsDeepAll.js +5 -0
  487. data/node_modules/lodash/fp/defer.js +5 -0
  488. data/node_modules/lodash/fp/delay.js +5 -0
  489. data/node_modules/lodash/fp/difference.js +5 -0
  490. data/node_modules/lodash/fp/differenceBy.js +5 -0
  491. data/node_modules/lodash/fp/differenceWith.js +5 -0
  492. data/node_modules/lodash/fp/dissoc.js +1 -0
  493. data/node_modules/lodash/fp/dissocPath.js +1 -0
  494. data/node_modules/lodash/fp/divide.js +5 -0
  495. data/node_modules/lodash/fp/drop.js +5 -0
  496. data/node_modules/lodash/fp/dropLast.js +1 -0
  497. data/node_modules/lodash/fp/dropLastWhile.js +1 -0
  498. data/node_modules/lodash/fp/dropRight.js +5 -0
  499. data/node_modules/lodash/fp/dropRightWhile.js +5 -0
  500. data/node_modules/lodash/fp/dropWhile.js +5 -0
  501. data/node_modules/lodash/fp/each.js +1 -0
  502. data/node_modules/lodash/fp/eachRight.js +1 -0
  503. data/node_modules/lodash/fp/endsWith.js +5 -0
  504. data/node_modules/lodash/fp/entries.js +1 -0
  505. data/node_modules/lodash/fp/entriesIn.js +1 -0
  506. data/node_modules/lodash/fp/eq.js +5 -0
  507. data/node_modules/lodash/fp/equals.js +1 -0
  508. data/node_modules/lodash/fp/escape.js +5 -0
  509. data/node_modules/lodash/fp/escapeRegExp.js +5 -0
  510. data/node_modules/lodash/fp/every.js +5 -0
  511. data/node_modules/lodash/fp/extend.js +1 -0
  512. data/node_modules/lodash/fp/extendAll.js +1 -0
  513. data/node_modules/lodash/fp/extendAllWith.js +1 -0
  514. data/node_modules/lodash/fp/extendWith.js +1 -0
  515. data/node_modules/lodash/fp/fill.js +5 -0
  516. data/node_modules/lodash/fp/filter.js +5 -0
  517. data/node_modules/lodash/fp/find.js +5 -0
  518. data/node_modules/lodash/fp/findFrom.js +5 -0
  519. data/node_modules/lodash/fp/findIndex.js +5 -0
  520. data/node_modules/lodash/fp/findIndexFrom.js +5 -0
  521. data/node_modules/lodash/fp/findKey.js +5 -0
  522. data/node_modules/lodash/fp/findLast.js +5 -0
  523. data/node_modules/lodash/fp/findLastFrom.js +5 -0
  524. data/node_modules/lodash/fp/findLastIndex.js +5 -0
  525. data/node_modules/lodash/fp/findLastIndexFrom.js +5 -0
  526. data/node_modules/lodash/fp/findLastKey.js +5 -0
  527. data/node_modules/lodash/fp/first.js +1 -0
  528. data/node_modules/lodash/fp/flatMap.js +5 -0
  529. data/node_modules/lodash/fp/flatMapDeep.js +5 -0
  530. data/node_modules/lodash/fp/flatMapDepth.js +5 -0
  531. data/node_modules/lodash/fp/flatten.js +5 -0
  532. data/node_modules/lodash/fp/flattenDeep.js +5 -0
  533. data/node_modules/lodash/fp/flattenDepth.js +5 -0
  534. data/node_modules/lodash/fp/flip.js +5 -0
  535. data/node_modules/lodash/fp/floor.js +5 -0
  536. data/node_modules/lodash/fp/flow.js +5 -0
  537. data/node_modules/lodash/fp/flowRight.js +5 -0
  538. data/node_modules/lodash/fp/forEach.js +5 -0
  539. data/node_modules/lodash/fp/forEachRight.js +5 -0
  540. data/node_modules/lodash/fp/forIn.js +5 -0
  541. data/node_modules/lodash/fp/forInRight.js +5 -0
  542. data/node_modules/lodash/fp/forOwn.js +5 -0
  543. data/node_modules/lodash/fp/forOwnRight.js +5 -0
  544. data/node_modules/lodash/fp/fromPairs.js +5 -0
  545. data/node_modules/lodash/fp/function.js +2 -0
  546. data/node_modules/lodash/fp/functions.js +5 -0
  547. data/node_modules/lodash/fp/functionsIn.js +5 -0
  548. data/node_modules/lodash/fp/get.js +5 -0
  549. data/node_modules/lodash/fp/getOr.js +5 -0
  550. data/node_modules/lodash/fp/groupBy.js +5 -0
  551. data/node_modules/lodash/fp/gt.js +5 -0
  552. data/node_modules/lodash/fp/gte.js +5 -0
  553. data/node_modules/lodash/fp/has.js +5 -0
  554. data/node_modules/lodash/fp/hasIn.js +5 -0
  555. data/node_modules/lodash/fp/head.js +5 -0
  556. data/node_modules/lodash/fp/identical.js +1 -0
  557. data/node_modules/lodash/fp/identity.js +5 -0
  558. data/node_modules/lodash/fp/inRange.js +5 -0
  559. data/node_modules/lodash/fp/includes.js +5 -0
  560. data/node_modules/lodash/fp/includesFrom.js +5 -0
  561. data/node_modules/lodash/fp/indexBy.js +1 -0
  562. data/node_modules/lodash/fp/indexOf.js +5 -0
  563. data/node_modules/lodash/fp/indexOfFrom.js +5 -0
  564. data/node_modules/lodash/fp/init.js +1 -0
  565. data/node_modules/lodash/fp/initial.js +5 -0
  566. data/node_modules/lodash/fp/intersection.js +5 -0
  567. data/node_modules/lodash/fp/intersectionBy.js +5 -0
  568. data/node_modules/lodash/fp/intersectionWith.js +5 -0
  569. data/node_modules/lodash/fp/invert.js +5 -0
  570. data/node_modules/lodash/fp/invertBy.js +5 -0
  571. data/node_modules/lodash/fp/invertObj.js +1 -0
  572. data/node_modules/lodash/fp/invoke.js +5 -0
  573. data/node_modules/lodash/fp/invokeArgs.js +5 -0
  574. data/node_modules/lodash/fp/invokeArgsMap.js +5 -0
  575. data/node_modules/lodash/fp/invokeMap.js +5 -0
  576. data/node_modules/lodash/fp/isArguments.js +5 -0
  577. data/node_modules/lodash/fp/isArray.js +5 -0
  578. data/node_modules/lodash/fp/isArrayBuffer.js +5 -0
  579. data/node_modules/lodash/fp/isArrayLike.js +5 -0
  580. data/node_modules/lodash/fp/isArrayLikeObject.js +5 -0
  581. data/node_modules/lodash/fp/isBoolean.js +5 -0
  582. data/node_modules/lodash/fp/isBuffer.js +5 -0
  583. data/node_modules/lodash/fp/isDate.js +5 -0
  584. data/node_modules/lodash/fp/isElement.js +5 -0
  585. data/node_modules/lodash/fp/isEmpty.js +5 -0
  586. data/node_modules/lodash/fp/isEqual.js +5 -0
  587. data/node_modules/lodash/fp/isEqualWith.js +5 -0
  588. data/node_modules/lodash/fp/isError.js +5 -0
  589. data/node_modules/lodash/fp/isFinite.js +5 -0
  590. data/node_modules/lodash/fp/isFunction.js +5 -0
  591. data/node_modules/lodash/fp/isInteger.js +5 -0
  592. data/node_modules/lodash/fp/isLength.js +5 -0
  593. data/node_modules/lodash/fp/isMap.js +5 -0
  594. data/node_modules/lodash/fp/isMatch.js +5 -0
  595. data/node_modules/lodash/fp/isMatchWith.js +5 -0
  596. data/node_modules/lodash/fp/isNaN.js +5 -0
  597. data/node_modules/lodash/fp/isNative.js +5 -0
  598. data/node_modules/lodash/fp/isNil.js +5 -0
  599. data/node_modules/lodash/fp/isNull.js +5 -0
  600. data/node_modules/lodash/fp/isNumber.js +5 -0
  601. data/node_modules/lodash/fp/isObject.js +5 -0
  602. data/node_modules/lodash/fp/isObjectLike.js +5 -0
  603. data/node_modules/lodash/fp/isPlainObject.js +5 -0
  604. data/node_modules/lodash/fp/isRegExp.js +5 -0
  605. data/node_modules/lodash/fp/isSafeInteger.js +5 -0
  606. data/node_modules/lodash/fp/isSet.js +5 -0
  607. data/node_modules/lodash/fp/isString.js +5 -0
  608. data/node_modules/lodash/fp/isSymbol.js +5 -0
  609. data/node_modules/lodash/fp/isTypedArray.js +5 -0
  610. data/node_modules/lodash/fp/isUndefined.js +5 -0
  611. data/node_modules/lodash/fp/isWeakMap.js +5 -0
  612. data/node_modules/lodash/fp/isWeakSet.js +5 -0
  613. data/node_modules/lodash/fp/iteratee.js +5 -0
  614. data/node_modules/lodash/fp/join.js +5 -0
  615. data/node_modules/lodash/fp/juxt.js +1 -0
  616. data/node_modules/lodash/fp/kebabCase.js +5 -0
  617. data/node_modules/lodash/fp/keyBy.js +5 -0
  618. data/node_modules/lodash/fp/keys.js +5 -0
  619. data/node_modules/lodash/fp/keysIn.js +5 -0
  620. data/node_modules/lodash/fp/lang.js +2 -0
  621. data/node_modules/lodash/fp/last.js +5 -0
  622. data/node_modules/lodash/fp/lastIndexOf.js +5 -0
  623. data/node_modules/lodash/fp/lastIndexOfFrom.js +5 -0
  624. data/node_modules/lodash/fp/lowerCase.js +5 -0
  625. data/node_modules/lodash/fp/lowerFirst.js +5 -0
  626. data/node_modules/lodash/fp/lt.js +5 -0
  627. data/node_modules/lodash/fp/lte.js +5 -0
  628. data/node_modules/lodash/fp/map.js +5 -0
  629. data/node_modules/lodash/fp/mapKeys.js +5 -0
  630. data/node_modules/lodash/fp/mapValues.js +5 -0
  631. data/node_modules/lodash/fp/matches.js +1 -0
  632. data/node_modules/lodash/fp/matchesProperty.js +5 -0
  633. data/node_modules/lodash/fp/math.js +2 -0
  634. data/node_modules/lodash/fp/max.js +5 -0
  635. data/node_modules/lodash/fp/maxBy.js +5 -0
  636. data/node_modules/lodash/fp/mean.js +5 -0
  637. data/node_modules/lodash/fp/meanBy.js +5 -0
  638. data/node_modules/lodash/fp/memoize.js +5 -0
  639. data/node_modules/lodash/fp/merge.js +5 -0
  640. data/node_modules/lodash/fp/mergeAll.js +5 -0
  641. data/node_modules/lodash/fp/mergeAllWith.js +5 -0
  642. data/node_modules/lodash/fp/mergeWith.js +5 -0
  643. data/node_modules/lodash/fp/method.js +5 -0
  644. data/node_modules/lodash/fp/methodOf.js +5 -0
  645. data/node_modules/lodash/fp/min.js +5 -0
  646. data/node_modules/lodash/fp/minBy.js +5 -0
  647. data/node_modules/lodash/fp/mixin.js +5 -0
  648. data/node_modules/lodash/fp/multiply.js +5 -0
  649. data/node_modules/lodash/fp/nAry.js +1 -0
  650. data/node_modules/lodash/fp/negate.js +5 -0
  651. data/node_modules/lodash/fp/next.js +5 -0
  652. data/node_modules/lodash/fp/noop.js +5 -0
  653. data/node_modules/lodash/fp/now.js +5 -0
  654. data/node_modules/lodash/fp/nth.js +5 -0
  655. data/node_modules/lodash/fp/nthArg.js +5 -0
  656. data/node_modules/lodash/fp/number.js +2 -0
  657. data/node_modules/lodash/fp/object.js +2 -0
  658. data/node_modules/lodash/fp/omit.js +5 -0
  659. data/node_modules/lodash/fp/omitAll.js +1 -0
  660. data/node_modules/lodash/fp/omitBy.js +5 -0
  661. data/node_modules/lodash/fp/once.js +5 -0
  662. data/node_modules/lodash/fp/orderBy.js +5 -0
  663. data/node_modules/lodash/fp/over.js +5 -0
  664. data/node_modules/lodash/fp/overArgs.js +5 -0
  665. data/node_modules/lodash/fp/overEvery.js +5 -0
  666. data/node_modules/lodash/fp/overSome.js +5 -0
  667. data/node_modules/lodash/fp/pad.js +5 -0
  668. data/node_modules/lodash/fp/padChars.js +5 -0
  669. data/node_modules/lodash/fp/padCharsEnd.js +5 -0
  670. data/node_modules/lodash/fp/padCharsStart.js +5 -0
  671. data/node_modules/lodash/fp/padEnd.js +5 -0
  672. data/node_modules/lodash/fp/padStart.js +5 -0
  673. data/node_modules/lodash/fp/parseInt.js +5 -0
  674. data/node_modules/lodash/fp/partial.js +5 -0
  675. data/node_modules/lodash/fp/partialRight.js +5 -0
  676. data/node_modules/lodash/fp/partition.js +5 -0
  677. data/node_modules/lodash/fp/path.js +1 -0
  678. data/node_modules/lodash/fp/pathEq.js +1 -0
  679. data/node_modules/lodash/fp/pathOr.js +1 -0
  680. data/node_modules/lodash/fp/paths.js +1 -0
  681. data/node_modules/lodash/fp/pick.js +5 -0
  682. data/node_modules/lodash/fp/pickAll.js +1 -0
  683. data/node_modules/lodash/fp/pickBy.js +5 -0
  684. data/node_modules/lodash/fp/pipe.js +1 -0
  685. data/node_modules/lodash/fp/placeholder.js +6 -0
  686. data/node_modules/lodash/fp/plant.js +5 -0
  687. data/node_modules/lodash/fp/pluck.js +1 -0
  688. data/node_modules/lodash/fp/prop.js +1 -0
  689. data/node_modules/lodash/fp/propEq.js +1 -0
  690. data/node_modules/lodash/fp/propOr.js +1 -0
  691. data/node_modules/lodash/fp/property.js +1 -0
  692. data/node_modules/lodash/fp/propertyOf.js +5 -0
  693. data/node_modules/lodash/fp/props.js +1 -0
  694. data/node_modules/lodash/fp/pull.js +5 -0
  695. data/node_modules/lodash/fp/pullAll.js +5 -0
  696. data/node_modules/lodash/fp/pullAllBy.js +5 -0
  697. data/node_modules/lodash/fp/pullAllWith.js +5 -0
  698. data/node_modules/lodash/fp/pullAt.js +5 -0
  699. data/node_modules/lodash/fp/random.js +5 -0
  700. data/node_modules/lodash/fp/range.js +5 -0
  701. data/node_modules/lodash/fp/rangeRight.js +5 -0
  702. data/node_modules/lodash/fp/rangeStep.js +5 -0
  703. data/node_modules/lodash/fp/rangeStepRight.js +5 -0
  704. data/node_modules/lodash/fp/rearg.js +5 -0
  705. data/node_modules/lodash/fp/reduce.js +5 -0
  706. data/node_modules/lodash/fp/reduceRight.js +5 -0
  707. data/node_modules/lodash/fp/reject.js +5 -0
  708. data/node_modules/lodash/fp/remove.js +5 -0
  709. data/node_modules/lodash/fp/repeat.js +5 -0
  710. data/node_modules/lodash/fp/replace.js +5 -0
  711. data/node_modules/lodash/fp/rest.js +5 -0
  712. data/node_modules/lodash/fp/restFrom.js +5 -0
  713. data/node_modules/lodash/fp/result.js +5 -0
  714. data/node_modules/lodash/fp/reverse.js +5 -0
  715. data/node_modules/lodash/fp/round.js +5 -0
  716. data/node_modules/lodash/fp/sample.js +5 -0
  717. data/node_modules/lodash/fp/sampleSize.js +5 -0
  718. data/node_modules/lodash/fp/seq.js +2 -0
  719. data/node_modules/lodash/fp/set.js +5 -0
  720. data/node_modules/lodash/fp/setWith.js +5 -0
  721. data/node_modules/lodash/fp/shuffle.js +5 -0
  722. data/node_modules/lodash/fp/size.js +5 -0
  723. data/node_modules/lodash/fp/slice.js +5 -0
  724. data/node_modules/lodash/fp/snakeCase.js +5 -0
  725. data/node_modules/lodash/fp/some.js +5 -0
  726. data/node_modules/lodash/fp/sortBy.js +5 -0
  727. data/node_modules/lodash/fp/sortedIndex.js +5 -0
  728. data/node_modules/lodash/fp/sortedIndexBy.js +5 -0
  729. data/node_modules/lodash/fp/sortedIndexOf.js +5 -0
  730. data/node_modules/lodash/fp/sortedLastIndex.js +5 -0
  731. data/node_modules/lodash/fp/sortedLastIndexBy.js +5 -0
  732. data/node_modules/lodash/fp/sortedLastIndexOf.js +5 -0
  733. data/node_modules/lodash/fp/sortedUniq.js +5 -0
  734. data/node_modules/lodash/fp/sortedUniqBy.js +5 -0
  735. data/node_modules/lodash/fp/split.js +5 -0
  736. data/node_modules/lodash/fp/spread.js +5 -0
  737. data/node_modules/lodash/fp/spreadFrom.js +5 -0
  738. data/node_modules/lodash/fp/startCase.js +5 -0
  739. data/node_modules/lodash/fp/startsWith.js +5 -0
  740. data/node_modules/lodash/fp/string.js +2 -0
  741. data/node_modules/lodash/fp/stubArray.js +5 -0
  742. data/node_modules/lodash/fp/stubFalse.js +5 -0
  743. data/node_modules/lodash/fp/stubObject.js +5 -0
  744. data/node_modules/lodash/fp/stubString.js +5 -0
  745. data/node_modules/lodash/fp/stubTrue.js +5 -0
  746. data/node_modules/lodash/fp/subtract.js +5 -0
  747. data/node_modules/lodash/fp/sum.js +5 -0
  748. data/node_modules/lodash/fp/sumBy.js +5 -0
  749. data/node_modules/lodash/fp/symmetricDifference.js +1 -0
  750. data/node_modules/lodash/fp/symmetricDifferenceBy.js +1 -0
  751. data/node_modules/lodash/fp/symmetricDifferenceWith.js +1 -0
  752. data/node_modules/lodash/fp/tail.js +5 -0
  753. data/node_modules/lodash/fp/take.js +5 -0
  754. data/node_modules/lodash/fp/takeLast.js +1 -0
  755. data/node_modules/lodash/fp/takeLastWhile.js +1 -0
  756. data/node_modules/lodash/fp/takeRight.js +5 -0
  757. data/node_modules/lodash/fp/takeRightWhile.js +5 -0
  758. data/node_modules/lodash/fp/takeWhile.js +5 -0
  759. data/node_modules/lodash/fp/tap.js +5 -0
  760. data/node_modules/lodash/fp/template.js +5 -0
  761. data/node_modules/lodash/fp/templateSettings.js +5 -0
  762. data/node_modules/lodash/fp/throttle.js +5 -0
  763. data/node_modules/lodash/fp/thru.js +5 -0
  764. data/node_modules/lodash/fp/times.js +5 -0
  765. data/node_modules/lodash/fp/toArray.js +5 -0
  766. data/node_modules/lodash/fp/toFinite.js +5 -0
  767. data/node_modules/lodash/fp/toInteger.js +5 -0
  768. data/node_modules/lodash/fp/toIterator.js +5 -0
  769. data/node_modules/lodash/fp/toJSON.js +5 -0
  770. data/node_modules/lodash/fp/toLength.js +5 -0
  771. data/node_modules/lodash/fp/toLower.js +5 -0
  772. data/node_modules/lodash/fp/toNumber.js +5 -0
  773. data/node_modules/lodash/fp/toPairs.js +5 -0
  774. data/node_modules/lodash/fp/toPairsIn.js +5 -0
  775. data/node_modules/lodash/fp/toPath.js +5 -0
  776. data/node_modules/lodash/fp/toPlainObject.js +5 -0
  777. data/node_modules/lodash/fp/toSafeInteger.js +5 -0
  778. data/node_modules/lodash/fp/toString.js +5 -0
  779. data/node_modules/lodash/fp/toUpper.js +5 -0
  780. data/node_modules/lodash/fp/transform.js +5 -0
  781. data/node_modules/lodash/fp/trim.js +5 -0
  782. data/node_modules/lodash/fp/trimChars.js +5 -0
  783. data/node_modules/lodash/fp/trimCharsEnd.js +5 -0
  784. data/node_modules/lodash/fp/trimCharsStart.js +5 -0
  785. data/node_modules/lodash/fp/trimEnd.js +5 -0
  786. data/node_modules/lodash/fp/trimStart.js +5 -0
  787. data/node_modules/lodash/fp/truncate.js +5 -0
  788. data/node_modules/lodash/fp/unapply.js +1 -0
  789. data/node_modules/lodash/fp/unary.js +5 -0
  790. data/node_modules/lodash/fp/unescape.js +5 -0
  791. data/node_modules/lodash/fp/union.js +5 -0
  792. data/node_modules/lodash/fp/unionBy.js +5 -0
  793. data/node_modules/lodash/fp/unionWith.js +5 -0
  794. data/node_modules/lodash/fp/uniq.js +5 -0
  795. data/node_modules/lodash/fp/uniqBy.js +5 -0
  796. data/node_modules/lodash/fp/uniqWith.js +5 -0
  797. data/node_modules/lodash/fp/uniqueId.js +5 -0
  798. data/node_modules/lodash/fp/unnest.js +1 -0
  799. data/node_modules/lodash/fp/unset.js +5 -0
  800. data/node_modules/lodash/fp/unzip.js +5 -0
  801. data/node_modules/lodash/fp/unzipWith.js +5 -0
  802. data/node_modules/lodash/fp/update.js +5 -0
  803. data/node_modules/lodash/fp/updateWith.js +5 -0
  804. data/node_modules/lodash/fp/upperCase.js +5 -0
  805. data/node_modules/lodash/fp/upperFirst.js +5 -0
  806. data/node_modules/lodash/fp/useWith.js +1 -0
  807. data/node_modules/lodash/fp/util.js +2 -0
  808. data/node_modules/lodash/fp/value.js +5 -0
  809. data/node_modules/lodash/fp/valueOf.js +5 -0
  810. data/node_modules/lodash/fp/values.js +5 -0
  811. data/node_modules/lodash/fp/valuesIn.js +5 -0
  812. data/node_modules/lodash/fp/where.js +1 -0
  813. data/node_modules/lodash/fp/whereEq.js +1 -0
  814. data/node_modules/lodash/fp/without.js +5 -0
  815. data/node_modules/lodash/fp/words.js +5 -0
  816. data/node_modules/lodash/fp/wrap.js +5 -0
  817. data/node_modules/lodash/fp/wrapperAt.js +5 -0
  818. data/node_modules/lodash/fp/wrapperChain.js +5 -0
  819. data/node_modules/lodash/fp/wrapperLodash.js +5 -0
  820. data/node_modules/lodash/fp/wrapperReverse.js +5 -0
  821. data/node_modules/lodash/fp/wrapperValue.js +5 -0
  822. data/node_modules/lodash/fp/xor.js +5 -0
  823. data/node_modules/lodash/fp/xorBy.js +5 -0
  824. data/node_modules/lodash/fp/xorWith.js +5 -0
  825. data/node_modules/lodash/fp/zip.js +5 -0
  826. data/node_modules/lodash/fp/zipAll.js +5 -0
  827. data/node_modules/lodash/fp/zipObj.js +1 -0
  828. data/node_modules/lodash/fp/zipObject.js +5 -0
  829. data/node_modules/lodash/fp/zipObjectDeep.js +5 -0
  830. data/node_modules/lodash/fp/zipWith.js +5 -0
  831. data/node_modules/lodash/fromPairs.js +28 -0
  832. data/node_modules/lodash/function.js +25 -0
  833. data/node_modules/lodash/functions.js +31 -0
  834. data/node_modules/lodash/functionsIn.js +31 -0
  835. data/node_modules/lodash/get.js +33 -0
  836. data/node_modules/lodash/groupBy.js +41 -0
  837. data/node_modules/lodash/gt.js +29 -0
  838. data/node_modules/lodash/gte.js +30 -0
  839. data/node_modules/lodash/has.js +35 -0
  840. data/node_modules/lodash/hasIn.js +34 -0
  841. data/node_modules/lodash/head.js +23 -0
  842. data/node_modules/lodash/identity.js +21 -0
  843. data/node_modules/lodash/inRange.js +55 -0
  844. data/node_modules/lodash/includes.js +53 -0
  845. data/node_modules/lodash/index.js +1 -0
  846. data/node_modules/lodash/indexOf.js +42 -0
  847. data/node_modules/lodash/initial.js +22 -0
  848. data/node_modules/lodash/intersection.js +30 -0
  849. data/node_modules/lodash/intersectionBy.js +45 -0
  850. data/node_modules/lodash/intersectionWith.js +41 -0
  851. data/node_modules/lodash/invert.js +42 -0
  852. data/node_modules/lodash/invertBy.js +56 -0
  853. data/node_modules/lodash/invoke.js +24 -0
  854. data/node_modules/lodash/invokeMap.js +41 -0
  855. data/node_modules/lodash/isArguments.js +36 -0
  856. data/node_modules/lodash/isArray.js +26 -0
  857. data/node_modules/lodash/isArrayBuffer.js +27 -0
  858. data/node_modules/lodash/isArrayLike.js +33 -0
  859. data/node_modules/lodash/isArrayLikeObject.js +33 -0
  860. data/node_modules/lodash/isBoolean.js +29 -0
  861. data/node_modules/lodash/isBuffer.js +38 -0
  862. data/node_modules/lodash/isDate.js +27 -0
  863. data/node_modules/lodash/isElement.js +25 -0
  864. data/node_modules/lodash/isEmpty.js +77 -0
  865. data/node_modules/lodash/isEqual.js +35 -0
  866. data/node_modules/lodash/isEqualWith.js +41 -0
  867. data/node_modules/lodash/isError.js +36 -0
  868. data/node_modules/lodash/isFinite.js +36 -0
  869. data/node_modules/lodash/isFunction.js +37 -0
  870. data/node_modules/lodash/isInteger.js +33 -0
  871. data/node_modules/lodash/isLength.js +35 -0
  872. data/node_modules/lodash/isMap.js +27 -0
  873. data/node_modules/lodash/isMatch.js +36 -0
  874. data/node_modules/lodash/isMatchWith.js +41 -0
  875. data/node_modules/lodash/isNaN.js +38 -0
  876. data/node_modules/lodash/isNative.js +40 -0
  877. data/node_modules/lodash/isNil.js +25 -0
  878. data/node_modules/lodash/isNull.js +22 -0
  879. data/node_modules/lodash/isNumber.js +38 -0
  880. data/node_modules/lodash/isObject.js +31 -0
  881. data/node_modules/lodash/isObjectLike.js +29 -0
  882. data/node_modules/lodash/isPlainObject.js +62 -0
  883. data/node_modules/lodash/isRegExp.js +27 -0
  884. data/node_modules/lodash/isSafeInteger.js +37 -0
  885. data/node_modules/lodash/isSet.js +27 -0
  886. data/node_modules/lodash/isString.js +30 -0
  887. data/node_modules/lodash/isSymbol.js +29 -0
  888. data/node_modules/lodash/isTypedArray.js +27 -0
  889. data/node_modules/lodash/isUndefined.js +22 -0
  890. data/node_modules/lodash/isWeakMap.js +28 -0
  891. data/node_modules/lodash/isWeakSet.js +28 -0
  892. data/node_modules/lodash/iteratee.js +53 -0
  893. data/node_modules/lodash/join.js +26 -0
  894. data/node_modules/lodash/kebabCase.js +28 -0
  895. data/node_modules/lodash/keyBy.js +36 -0
  896. data/node_modules/lodash/keys.js +37 -0
  897. data/node_modules/lodash/keysIn.js +32 -0
  898. data/node_modules/lodash/lang.js +58 -0
  899. data/node_modules/lodash/last.js +20 -0
  900. data/node_modules/lodash/lastIndexOf.js +46 -0
  901. data/node_modules/lodash/lodash.js +17209 -0
  902. data/node_modules/lodash/lodash.min.js +140 -0
  903. data/node_modules/lodash/lowerCase.js +27 -0
  904. data/node_modules/lodash/lowerFirst.js +22 -0
  905. data/node_modules/lodash/lt.js +29 -0
  906. data/node_modules/lodash/lte.js +30 -0
  907. data/node_modules/lodash/map.js +53 -0
  908. data/node_modules/lodash/mapKeys.js +36 -0
  909. data/node_modules/lodash/mapValues.js +43 -0
  910. data/node_modules/lodash/matches.js +46 -0
  911. data/node_modules/lodash/matchesProperty.js +44 -0
  912. data/node_modules/lodash/math.js +17 -0
  913. data/node_modules/lodash/max.js +29 -0
  914. data/node_modules/lodash/maxBy.js +34 -0
  915. data/node_modules/lodash/mean.js +22 -0
  916. data/node_modules/lodash/meanBy.js +31 -0
  917. data/node_modules/lodash/memoize.js +73 -0
  918. data/node_modules/lodash/merge.js +39 -0
  919. data/node_modules/lodash/mergeWith.js +39 -0
  920. data/node_modules/lodash/method.js +34 -0
  921. data/node_modules/lodash/methodOf.js +33 -0
  922. data/node_modules/lodash/min.js +29 -0
  923. data/node_modules/lodash/minBy.js +34 -0
  924. data/node_modules/lodash/mixin.js +74 -0
  925. data/node_modules/lodash/multiply.js +22 -0
  926. data/node_modules/lodash/negate.js +40 -0
  927. data/node_modules/lodash/next.js +35 -0
  928. data/node_modules/lodash/noop.js +17 -0
  929. data/node_modules/lodash/now.js +23 -0
  930. data/node_modules/lodash/nth.js +29 -0
  931. data/node_modules/lodash/nthArg.js +32 -0
  932. data/node_modules/lodash/number.js +5 -0
  933. data/node_modules/lodash/object.js +49 -0
  934. data/node_modules/lodash/omit.js +57 -0
  935. data/node_modules/lodash/omitBy.js +29 -0
  936. data/node_modules/lodash/once.js +25 -0
  937. data/node_modules/lodash/orderBy.js +47 -0
  938. data/node_modules/lodash/over.js +24 -0
  939. data/node_modules/lodash/overArgs.js +61 -0
  940. data/node_modules/lodash/overEvery.js +34 -0
  941. data/node_modules/lodash/overSome.js +37 -0
  942. data/node_modules/lodash/package.json +17 -0
  943. data/node_modules/lodash/pad.js +49 -0
  944. data/node_modules/lodash/padEnd.js +39 -0
  945. data/node_modules/lodash/padStart.js +39 -0
  946. data/node_modules/lodash/parseInt.js +43 -0
  947. data/node_modules/lodash/partial.js +50 -0
  948. data/node_modules/lodash/partialRight.js +49 -0
  949. data/node_modules/lodash/partition.js +43 -0
  950. data/node_modules/lodash/pick.js +25 -0
  951. data/node_modules/lodash/pickBy.js +37 -0
  952. data/node_modules/lodash/plant.js +48 -0
  953. data/node_modules/lodash/property.js +32 -0
  954. data/node_modules/lodash/propertyOf.js +30 -0
  955. data/node_modules/lodash/pull.js +29 -0
  956. data/node_modules/lodash/pullAll.js +29 -0
  957. data/node_modules/lodash/pullAllBy.js +33 -0
  958. data/node_modules/lodash/pullAllWith.js +32 -0
  959. data/node_modules/lodash/pullAt.js +43 -0
  960. data/node_modules/lodash/random.js +82 -0
  961. data/node_modules/lodash/range.js +46 -0
  962. data/node_modules/lodash/rangeRight.js +41 -0
  963. data/node_modules/lodash/rearg.js +33 -0
  964. data/node_modules/lodash/reduce.js +51 -0
  965. data/node_modules/lodash/reduceRight.js +36 -0
  966. data/node_modules/lodash/reject.js +46 -0
  967. data/node_modules/lodash/release.md +48 -0
  968. data/node_modules/lodash/remove.js +53 -0
  969. data/node_modules/lodash/repeat.js +37 -0
  970. data/node_modules/lodash/replace.js +29 -0
  971. data/node_modules/lodash/rest.js +40 -0
  972. data/node_modules/lodash/result.js +56 -0
  973. data/node_modules/lodash/reverse.js +34 -0
  974. data/node_modules/lodash/round.js +26 -0
  975. data/node_modules/lodash/sample.js +24 -0
  976. data/node_modules/lodash/sampleSize.js +37 -0
  977. data/node_modules/lodash/seq.js +16 -0
  978. data/node_modules/lodash/set.js +35 -0
  979. data/node_modules/lodash/setWith.js +32 -0
  980. data/node_modules/lodash/shuffle.js +25 -0
  981. data/node_modules/lodash/size.js +46 -0
  982. data/node_modules/lodash/slice.js +37 -0
  983. data/node_modules/lodash/snakeCase.js +28 -0
  984. data/node_modules/lodash/some.js +51 -0
  985. data/node_modules/lodash/sortBy.js +48 -0
  986. data/node_modules/lodash/sortedIndex.js +24 -0
  987. data/node_modules/lodash/sortedIndexBy.js +33 -0
  988. data/node_modules/lodash/sortedIndexOf.js +31 -0
  989. data/node_modules/lodash/sortedLastIndex.js +25 -0
  990. data/node_modules/lodash/sortedLastIndexBy.js +33 -0
  991. data/node_modules/lodash/sortedLastIndexOf.js +31 -0
  992. data/node_modules/lodash/sortedUniq.js +24 -0
  993. data/node_modules/lodash/sortedUniqBy.js +26 -0
  994. data/node_modules/lodash/split.js +52 -0
  995. data/node_modules/lodash/spread.js +63 -0
  996. data/node_modules/lodash/startCase.js +29 -0
  997. data/node_modules/lodash/startsWith.js +39 -0
  998. data/node_modules/lodash/string.js +33 -0
  999. data/node_modules/lodash/stubArray.js +23 -0
  1000. data/node_modules/lodash/stubFalse.js +18 -0
  1001. data/node_modules/lodash/stubObject.js +23 -0
  1002. data/node_modules/lodash/stubString.js +18 -0
  1003. data/node_modules/lodash/stubTrue.js +18 -0
  1004. data/node_modules/lodash/subtract.js +22 -0
  1005. data/node_modules/lodash/sum.js +24 -0
  1006. data/node_modules/lodash/sumBy.js +33 -0
  1007. data/node_modules/lodash/tail.js +22 -0
  1008. data/node_modules/lodash/take.js +37 -0
  1009. data/node_modules/lodash/takeRight.js +39 -0
  1010. data/node_modules/lodash/takeRightWhile.js +45 -0
  1011. data/node_modules/lodash/takeWhile.js +45 -0
  1012. data/node_modules/lodash/tap.js +29 -0
  1013. data/node_modules/lodash/template.js +272 -0
  1014. data/node_modules/lodash/templateSettings.js +67 -0
  1015. data/node_modules/lodash/throttle.js +69 -0
  1016. data/node_modules/lodash/thru.js +28 -0
  1017. data/node_modules/lodash/times.js +51 -0
  1018. data/node_modules/lodash/toArray.js +58 -0
  1019. data/node_modules/lodash/toFinite.js +42 -0
  1020. data/node_modules/lodash/toInteger.js +36 -0
  1021. data/node_modules/lodash/toIterator.js +23 -0
  1022. data/node_modules/lodash/toJSON.js +1 -0
  1023. data/node_modules/lodash/toLength.js +38 -0
  1024. data/node_modules/lodash/toLower.js +28 -0
  1025. data/node_modules/lodash/toNumber.js +64 -0
  1026. data/node_modules/lodash/toPairs.js +30 -0
  1027. data/node_modules/lodash/toPairsIn.js +30 -0
  1028. data/node_modules/lodash/toPath.js +33 -0
  1029. data/node_modules/lodash/toPlainObject.js +32 -0
  1030. data/node_modules/lodash/toSafeInteger.js +37 -0
  1031. data/node_modules/lodash/toString.js +28 -0
  1032. data/node_modules/lodash/toUpper.js +28 -0
  1033. data/node_modules/lodash/transform.js +65 -0
  1034. data/node_modules/lodash/trim.js +47 -0
  1035. data/node_modules/lodash/trimEnd.js +41 -0
  1036. data/node_modules/lodash/trimStart.js +43 -0
  1037. data/node_modules/lodash/truncate.js +111 -0
  1038. data/node_modules/lodash/unary.js +22 -0
  1039. data/node_modules/lodash/unescape.js +34 -0
  1040. data/node_modules/lodash/union.js +26 -0
  1041. data/node_modules/lodash/unionBy.js +39 -0
  1042. data/node_modules/lodash/unionWith.js +34 -0
  1043. data/node_modules/lodash/uniq.js +25 -0
  1044. data/node_modules/lodash/uniqBy.js +31 -0
  1045. data/node_modules/lodash/uniqWith.js +28 -0
  1046. data/node_modules/lodash/uniqueId.js +28 -0
  1047. data/node_modules/lodash/unset.js +34 -0
  1048. data/node_modules/lodash/unzip.js +45 -0
  1049. data/node_modules/lodash/unzipWith.js +39 -0
  1050. data/node_modules/lodash/update.js +35 -0
  1051. data/node_modules/lodash/updateWith.js +33 -0
  1052. data/node_modules/lodash/upperCase.js +27 -0
  1053. data/node_modules/lodash/upperFirst.js +22 -0
  1054. data/node_modules/lodash/util.js +34 -0
  1055. data/node_modules/lodash/value.js +1 -0
  1056. data/node_modules/lodash/valueOf.js +1 -0
  1057. data/node_modules/lodash/values.js +34 -0
  1058. data/node_modules/lodash/valuesIn.js +32 -0
  1059. data/node_modules/lodash/without.js +31 -0
  1060. data/node_modules/lodash/words.js +35 -0
  1061. data/node_modules/lodash/wrap.js +30 -0
  1062. data/node_modules/lodash/wrapperAt.js +48 -0
  1063. data/node_modules/lodash/wrapperChain.js +34 -0
  1064. data/node_modules/lodash/wrapperLodash.js +147 -0
  1065. data/node_modules/lodash/wrapperReverse.js +44 -0
  1066. data/node_modules/lodash/wrapperValue.js +21 -0
  1067. data/node_modules/lodash/xor.js +28 -0
  1068. data/node_modules/lodash/xorBy.js +39 -0
  1069. data/node_modules/lodash/xorWith.js +34 -0
  1070. data/node_modules/lodash/zip.js +22 -0
  1071. data/node_modules/lodash/zipObject.js +24 -0
  1072. data/node_modules/lodash/zipObjectDeep.js +23 -0
  1073. data/node_modules/lodash/zipWith.js +32 -0
  1074. data/node_modules/yarn/LICENSE +26 -0
  1075. data/node_modules/yarn/README.md +60 -0
  1076. data/node_modules/yarn/bin/yarn +35 -0
  1077. data/node_modules/yarn/bin/yarn.cmd +2 -0
  1078. data/node_modules/yarn/bin/yarn.js +31 -0
  1079. data/node_modules/yarn/bin/yarnpkg +2 -0
  1080. data/node_modules/yarn/bin/yarnpkg.cmd +2 -0
  1081. data/node_modules/yarn/lib/cli.js +153424 -0
  1082. data/node_modules/yarn/lib/v8-compile-cache.js +351 -0
  1083. data/node_modules/yarn/package.json +27 -0
  1084. data/node_modules/yarn/preinstall.js +60 -0
  1085. data/package.json +6 -0
  1086. data/yarn.lock +13 -0
  1087. metadata +1090 -4
@@ -0,0 +1,26 @@
1
+ var createRound = require('./_createRound');
2
+
3
+ /**
4
+ * Computes `number` rounded down to `precision`.
5
+ *
6
+ * @static
7
+ * @memberOf _
8
+ * @since 3.10.0
9
+ * @category Math
10
+ * @param {number} number The number to round down.
11
+ * @param {number} [precision=0] The precision to round down to.
12
+ * @returns {number} Returns the rounded down number.
13
+ * @example
14
+ *
15
+ * _.floor(4.006);
16
+ * // => 4
17
+ *
18
+ * _.floor(0.046, 2);
19
+ * // => 0.04
20
+ *
21
+ * _.floor(4060, -2);
22
+ * // => 4000
23
+ */
24
+ var floor = createRound('floor');
25
+
26
+ module.exports = floor;
@@ -0,0 +1,27 @@
1
+ var createFlow = require('./_createFlow');
2
+
3
+ /**
4
+ * Creates a function that returns the result of invoking the given functions
5
+ * with the `this` binding of the created function, where each successive
6
+ * invocation is supplied the return value of the previous.
7
+ *
8
+ * @static
9
+ * @memberOf _
10
+ * @since 3.0.0
11
+ * @category Util
12
+ * @param {...(Function|Function[])} [funcs] The functions to invoke.
13
+ * @returns {Function} Returns the new composite function.
14
+ * @see _.flowRight
15
+ * @example
16
+ *
17
+ * function square(n) {
18
+ * return n * n;
19
+ * }
20
+ *
21
+ * var addSquare = _.flow([_.add, square]);
22
+ * addSquare(1, 2);
23
+ * // => 9
24
+ */
25
+ var flow = createFlow();
26
+
27
+ module.exports = flow;
@@ -0,0 +1,26 @@
1
+ var createFlow = require('./_createFlow');
2
+
3
+ /**
4
+ * This method is like `_.flow` except that it creates a function that
5
+ * invokes the given functions from right to left.
6
+ *
7
+ * @static
8
+ * @since 3.0.0
9
+ * @memberOf _
10
+ * @category Util
11
+ * @param {...(Function|Function[])} [funcs] The functions to invoke.
12
+ * @returns {Function} Returns the new composite function.
13
+ * @see _.flow
14
+ * @example
15
+ *
16
+ * function square(n) {
17
+ * return n * n;
18
+ * }
19
+ *
20
+ * var addSquare = _.flowRight([square, _.add]);
21
+ * addSquare(1, 2);
22
+ * // => 9
23
+ */
24
+ var flowRight = createFlow(true);
25
+
26
+ module.exports = flowRight;
@@ -0,0 +1,41 @@
1
+ var arrayEach = require('./_arrayEach'),
2
+ baseEach = require('./_baseEach'),
3
+ castFunction = require('./_castFunction'),
4
+ isArray = require('./isArray');
5
+
6
+ /**
7
+ * Iterates over elements of `collection` and invokes `iteratee` for each element.
8
+ * The iteratee is invoked with three arguments: (value, index|key, collection).
9
+ * Iteratee functions may exit iteration early by explicitly returning `false`.
10
+ *
11
+ * **Note:** As with other "Collections" methods, objects with a "length"
12
+ * property are iterated like arrays. To avoid this behavior use `_.forIn`
13
+ * or `_.forOwn` for object iteration.
14
+ *
15
+ * @static
16
+ * @memberOf _
17
+ * @since 0.1.0
18
+ * @alias each
19
+ * @category Collection
20
+ * @param {Array|Object} collection The collection to iterate over.
21
+ * @param {Function} [iteratee=_.identity] The function invoked per iteration.
22
+ * @returns {Array|Object} Returns `collection`.
23
+ * @see _.forEachRight
24
+ * @example
25
+ *
26
+ * _.forEach([1, 2], function(value) {
27
+ * console.log(value);
28
+ * });
29
+ * // => Logs `1` then `2`.
30
+ *
31
+ * _.forEach({ 'a': 1, 'b': 2 }, function(value, key) {
32
+ * console.log(key);
33
+ * });
34
+ * // => Logs 'a' then 'b' (iteration order is not guaranteed).
35
+ */
36
+ function forEach(collection, iteratee) {
37
+ var func = isArray(collection) ? arrayEach : baseEach;
38
+ return func(collection, castFunction(iteratee));
39
+ }
40
+
41
+ module.exports = forEach;
@@ -0,0 +1,31 @@
1
+ var arrayEachRight = require('./_arrayEachRight'),
2
+ baseEachRight = require('./_baseEachRight'),
3
+ castFunction = require('./_castFunction'),
4
+ isArray = require('./isArray');
5
+
6
+ /**
7
+ * This method is like `_.forEach` except that it iterates over elements of
8
+ * `collection` from right to left.
9
+ *
10
+ * @static
11
+ * @memberOf _
12
+ * @since 2.0.0
13
+ * @alias eachRight
14
+ * @category Collection
15
+ * @param {Array|Object} collection The collection to iterate over.
16
+ * @param {Function} [iteratee=_.identity] The function invoked per iteration.
17
+ * @returns {Array|Object} Returns `collection`.
18
+ * @see _.forEach
19
+ * @example
20
+ *
21
+ * _.forEachRight([1, 2], function(value) {
22
+ * console.log(value);
23
+ * });
24
+ * // => Logs `2` then `1`.
25
+ */
26
+ function forEachRight(collection, iteratee) {
27
+ var func = isArray(collection) ? arrayEachRight : baseEachRight;
28
+ return func(collection, castFunction(iteratee));
29
+ }
30
+
31
+ module.exports = forEachRight;
@@ -0,0 +1,39 @@
1
+ var baseFor = require('./_baseFor'),
2
+ castFunction = require('./_castFunction'),
3
+ keysIn = require('./keysIn');
4
+
5
+ /**
6
+ * Iterates over own and inherited enumerable string keyed properties of an
7
+ * object and invokes `iteratee` for each property. The iteratee is invoked
8
+ * with three arguments: (value, key, object). Iteratee functions may exit
9
+ * iteration early by explicitly returning `false`.
10
+ *
11
+ * @static
12
+ * @memberOf _
13
+ * @since 0.3.0
14
+ * @category Object
15
+ * @param {Object} object The object to iterate over.
16
+ * @param {Function} [iteratee=_.identity] The function invoked per iteration.
17
+ * @returns {Object} Returns `object`.
18
+ * @see _.forInRight
19
+ * @example
20
+ *
21
+ * function Foo() {
22
+ * this.a = 1;
23
+ * this.b = 2;
24
+ * }
25
+ *
26
+ * Foo.prototype.c = 3;
27
+ *
28
+ * _.forIn(new Foo, function(value, key) {
29
+ * console.log(key);
30
+ * });
31
+ * // => Logs 'a', 'b', then 'c' (iteration order is not guaranteed).
32
+ */
33
+ function forIn(object, iteratee) {
34
+ return object == null
35
+ ? object
36
+ : baseFor(object, castFunction(iteratee), keysIn);
37
+ }
38
+
39
+ module.exports = forIn;
@@ -0,0 +1,37 @@
1
+ var baseForRight = require('./_baseForRight'),
2
+ castFunction = require('./_castFunction'),
3
+ keysIn = require('./keysIn');
4
+
5
+ /**
6
+ * This method is like `_.forIn` except that it iterates over properties of
7
+ * `object` in the opposite order.
8
+ *
9
+ * @static
10
+ * @memberOf _
11
+ * @since 2.0.0
12
+ * @category Object
13
+ * @param {Object} object The object to iterate over.
14
+ * @param {Function} [iteratee=_.identity] The function invoked per iteration.
15
+ * @returns {Object} Returns `object`.
16
+ * @see _.forIn
17
+ * @example
18
+ *
19
+ * function Foo() {
20
+ * this.a = 1;
21
+ * this.b = 2;
22
+ * }
23
+ *
24
+ * Foo.prototype.c = 3;
25
+ *
26
+ * _.forInRight(new Foo, function(value, key) {
27
+ * console.log(key);
28
+ * });
29
+ * // => Logs 'c', 'b', then 'a' assuming `_.forIn` logs 'a', 'b', then 'c'.
30
+ */
31
+ function forInRight(object, iteratee) {
32
+ return object == null
33
+ ? object
34
+ : baseForRight(object, castFunction(iteratee), keysIn);
35
+ }
36
+
37
+ module.exports = forInRight;
@@ -0,0 +1,36 @@
1
+ var baseForOwn = require('./_baseForOwn'),
2
+ castFunction = require('./_castFunction');
3
+
4
+ /**
5
+ * Iterates over own enumerable string keyed properties of an object and
6
+ * invokes `iteratee` for each property. The iteratee is invoked with three
7
+ * arguments: (value, key, object). Iteratee functions may exit iteration
8
+ * early by explicitly returning `false`.
9
+ *
10
+ * @static
11
+ * @memberOf _
12
+ * @since 0.3.0
13
+ * @category Object
14
+ * @param {Object} object The object to iterate over.
15
+ * @param {Function} [iteratee=_.identity] The function invoked per iteration.
16
+ * @returns {Object} Returns `object`.
17
+ * @see _.forOwnRight
18
+ * @example
19
+ *
20
+ * function Foo() {
21
+ * this.a = 1;
22
+ * this.b = 2;
23
+ * }
24
+ *
25
+ * Foo.prototype.c = 3;
26
+ *
27
+ * _.forOwn(new Foo, function(value, key) {
28
+ * console.log(key);
29
+ * });
30
+ * // => Logs 'a' then 'b' (iteration order is not guaranteed).
31
+ */
32
+ function forOwn(object, iteratee) {
33
+ return object && baseForOwn(object, castFunction(iteratee));
34
+ }
35
+
36
+ module.exports = forOwn;
@@ -0,0 +1,34 @@
1
+ var baseForOwnRight = require('./_baseForOwnRight'),
2
+ castFunction = require('./_castFunction');
3
+
4
+ /**
5
+ * This method is like `_.forOwn` except that it iterates over properties of
6
+ * `object` in the opposite order.
7
+ *
8
+ * @static
9
+ * @memberOf _
10
+ * @since 2.0.0
11
+ * @category Object
12
+ * @param {Object} object The object to iterate over.
13
+ * @param {Function} [iteratee=_.identity] The function invoked per iteration.
14
+ * @returns {Object} Returns `object`.
15
+ * @see _.forOwn
16
+ * @example
17
+ *
18
+ * function Foo() {
19
+ * this.a = 1;
20
+ * this.b = 2;
21
+ * }
22
+ *
23
+ * Foo.prototype.c = 3;
24
+ *
25
+ * _.forOwnRight(new Foo, function(value, key) {
26
+ * console.log(key);
27
+ * });
28
+ * // => Logs 'b' then 'a' assuming `_.forOwn` logs 'a' then 'b'.
29
+ */
30
+ function forOwnRight(object, iteratee) {
31
+ return object && baseForOwnRight(object, castFunction(iteratee));
32
+ }
33
+
34
+ module.exports = forOwnRight;
@@ -0,0 +1,2 @@
1
+ var _ = require('./lodash.min').runInContext();
2
+ module.exports = require('./fp/_baseConvert')(_, _);
@@ -0,0 +1 @@
1
+ module.exports = require('./stubFalse');
@@ -0,0 +1 @@
1
+ module.exports = require('./stubTrue');
@@ -0,0 +1 @@
1
+ module.exports = require('./placeholder');
@@ -0,0 +1,569 @@
1
+ var mapping = require('./_mapping'),
2
+ fallbackHolder = require('./placeholder');
3
+
4
+ /** Built-in value reference. */
5
+ var push = Array.prototype.push;
6
+
7
+ /**
8
+ * Creates a function, with an arity of `n`, that invokes `func` with the
9
+ * arguments it receives.
10
+ *
11
+ * @private
12
+ * @param {Function} func The function to wrap.
13
+ * @param {number} n The arity of the new function.
14
+ * @returns {Function} Returns the new function.
15
+ */
16
+ function baseArity(func, n) {
17
+ return n == 2
18
+ ? function(a, b) { return func.apply(undefined, arguments); }
19
+ : function(a) { return func.apply(undefined, arguments); };
20
+ }
21
+
22
+ /**
23
+ * Creates a function that invokes `func`, with up to `n` arguments, ignoring
24
+ * any additional arguments.
25
+ *
26
+ * @private
27
+ * @param {Function} func The function to cap arguments for.
28
+ * @param {number} n The arity cap.
29
+ * @returns {Function} Returns the new function.
30
+ */
31
+ function baseAry(func, n) {
32
+ return n == 2
33
+ ? function(a, b) { return func(a, b); }
34
+ : function(a) { return func(a); };
35
+ }
36
+
37
+ /**
38
+ * Creates a clone of `array`.
39
+ *
40
+ * @private
41
+ * @param {Array} array The array to clone.
42
+ * @returns {Array} Returns the cloned array.
43
+ */
44
+ function cloneArray(array) {
45
+ var length = array ? array.length : 0,
46
+ result = Array(length);
47
+
48
+ while (length--) {
49
+ result[length] = array[length];
50
+ }
51
+ return result;
52
+ }
53
+
54
+ /**
55
+ * Creates a function that clones a given object using the assignment `func`.
56
+ *
57
+ * @private
58
+ * @param {Function} func The assignment function.
59
+ * @returns {Function} Returns the new cloner function.
60
+ */
61
+ function createCloner(func) {
62
+ return function(object) {
63
+ return func({}, object);
64
+ };
65
+ }
66
+
67
+ /**
68
+ * A specialized version of `_.spread` which flattens the spread array into
69
+ * the arguments of the invoked `func`.
70
+ *
71
+ * @private
72
+ * @param {Function} func The function to spread arguments over.
73
+ * @param {number} start The start position of the spread.
74
+ * @returns {Function} Returns the new function.
75
+ */
76
+ function flatSpread(func, start) {
77
+ return function() {
78
+ var length = arguments.length,
79
+ lastIndex = length - 1,
80
+ args = Array(length);
81
+
82
+ while (length--) {
83
+ args[length] = arguments[length];
84
+ }
85
+ var array = args[start],
86
+ otherArgs = args.slice(0, start);
87
+
88
+ if (array) {
89
+ push.apply(otherArgs, array);
90
+ }
91
+ if (start != lastIndex) {
92
+ push.apply(otherArgs, args.slice(start + 1));
93
+ }
94
+ return func.apply(this, otherArgs);
95
+ };
96
+ }
97
+
98
+ /**
99
+ * Creates a function that wraps `func` and uses `cloner` to clone the first
100
+ * argument it receives.
101
+ *
102
+ * @private
103
+ * @param {Function} func The function to wrap.
104
+ * @param {Function} cloner The function to clone arguments.
105
+ * @returns {Function} Returns the new immutable function.
106
+ */
107
+ function wrapImmutable(func, cloner) {
108
+ return function() {
109
+ var length = arguments.length;
110
+ if (!length) {
111
+ return;
112
+ }
113
+ var args = Array(length);
114
+ while (length--) {
115
+ args[length] = arguments[length];
116
+ }
117
+ var result = args[0] = cloner.apply(undefined, args);
118
+ func.apply(undefined, args);
119
+ return result;
120
+ };
121
+ }
122
+
123
+ /**
124
+ * The base implementation of `convert` which accepts a `util` object of methods
125
+ * required to perform conversions.
126
+ *
127
+ * @param {Object} util The util object.
128
+ * @param {string} name The name of the function to convert.
129
+ * @param {Function} func The function to convert.
130
+ * @param {Object} [options] The options object.
131
+ * @param {boolean} [options.cap=true] Specify capping iteratee arguments.
132
+ * @param {boolean} [options.curry=true] Specify currying.
133
+ * @param {boolean} [options.fixed=true] Specify fixed arity.
134
+ * @param {boolean} [options.immutable=true] Specify immutable operations.
135
+ * @param {boolean} [options.rearg=true] Specify rearranging arguments.
136
+ * @returns {Function|Object} Returns the converted function or object.
137
+ */
138
+ function baseConvert(util, name, func, options) {
139
+ var isLib = typeof name == 'function',
140
+ isObj = name === Object(name);
141
+
142
+ if (isObj) {
143
+ options = func;
144
+ func = name;
145
+ name = undefined;
146
+ }
147
+ if (func == null) {
148
+ throw new TypeError;
149
+ }
150
+ options || (options = {});
151
+
152
+ var config = {
153
+ 'cap': 'cap' in options ? options.cap : true,
154
+ 'curry': 'curry' in options ? options.curry : true,
155
+ 'fixed': 'fixed' in options ? options.fixed : true,
156
+ 'immutable': 'immutable' in options ? options.immutable : true,
157
+ 'rearg': 'rearg' in options ? options.rearg : true
158
+ };
159
+
160
+ var defaultHolder = isLib ? func : fallbackHolder,
161
+ forceCurry = ('curry' in options) && options.curry,
162
+ forceFixed = ('fixed' in options) && options.fixed,
163
+ forceRearg = ('rearg' in options) && options.rearg,
164
+ pristine = isLib ? func.runInContext() : undefined;
165
+
166
+ var helpers = isLib ? func : {
167
+ 'ary': util.ary,
168
+ 'assign': util.assign,
169
+ 'clone': util.clone,
170
+ 'curry': util.curry,
171
+ 'forEach': util.forEach,
172
+ 'isArray': util.isArray,
173
+ 'isError': util.isError,
174
+ 'isFunction': util.isFunction,
175
+ 'isWeakMap': util.isWeakMap,
176
+ 'iteratee': util.iteratee,
177
+ 'keys': util.keys,
178
+ 'rearg': util.rearg,
179
+ 'toInteger': util.toInteger,
180
+ 'toPath': util.toPath
181
+ };
182
+
183
+ var ary = helpers.ary,
184
+ assign = helpers.assign,
185
+ clone = helpers.clone,
186
+ curry = helpers.curry,
187
+ each = helpers.forEach,
188
+ isArray = helpers.isArray,
189
+ isError = helpers.isError,
190
+ isFunction = helpers.isFunction,
191
+ isWeakMap = helpers.isWeakMap,
192
+ keys = helpers.keys,
193
+ rearg = helpers.rearg,
194
+ toInteger = helpers.toInteger,
195
+ toPath = helpers.toPath;
196
+
197
+ var aryMethodKeys = keys(mapping.aryMethod);
198
+
199
+ var wrappers = {
200
+ 'castArray': function(castArray) {
201
+ return function() {
202
+ var value = arguments[0];
203
+ return isArray(value)
204
+ ? castArray(cloneArray(value))
205
+ : castArray.apply(undefined, arguments);
206
+ };
207
+ },
208
+ 'iteratee': function(iteratee) {
209
+ return function() {
210
+ var func = arguments[0],
211
+ arity = arguments[1],
212
+ result = iteratee(func, arity),
213
+ length = result.length;
214
+
215
+ if (config.cap && typeof arity == 'number') {
216
+ arity = arity > 2 ? (arity - 2) : 1;
217
+ return (length && length <= arity) ? result : baseAry(result, arity);
218
+ }
219
+ return result;
220
+ };
221
+ },
222
+ 'mixin': function(mixin) {
223
+ return function(source) {
224
+ var func = this;
225
+ if (!isFunction(func)) {
226
+ return mixin(func, Object(source));
227
+ }
228
+ var pairs = [];
229
+ each(keys(source), function(key) {
230
+ if (isFunction(source[key])) {
231
+ pairs.push([key, func.prototype[key]]);
232
+ }
233
+ });
234
+
235
+ mixin(func, Object(source));
236
+
237
+ each(pairs, function(pair) {
238
+ var value = pair[1];
239
+ if (isFunction(value)) {
240
+ func.prototype[pair[0]] = value;
241
+ } else {
242
+ delete func.prototype[pair[0]];
243
+ }
244
+ });
245
+ return func;
246
+ };
247
+ },
248
+ 'nthArg': function(nthArg) {
249
+ return function(n) {
250
+ var arity = n < 0 ? 1 : (toInteger(n) + 1);
251
+ return curry(nthArg(n), arity);
252
+ };
253
+ },
254
+ 'rearg': function(rearg) {
255
+ return function(func, indexes) {
256
+ var arity = indexes ? indexes.length : 0;
257
+ return curry(rearg(func, indexes), arity);
258
+ };
259
+ },
260
+ 'runInContext': function(runInContext) {
261
+ return function(context) {
262
+ return baseConvert(util, runInContext(context), options);
263
+ };
264
+ }
265
+ };
266
+
267
+ /*--------------------------------------------------------------------------*/
268
+
269
+ /**
270
+ * Casts `func` to a function with an arity capped iteratee if needed.
271
+ *
272
+ * @private
273
+ * @param {string} name The name of the function to inspect.
274
+ * @param {Function} func The function to inspect.
275
+ * @returns {Function} Returns the cast function.
276
+ */
277
+ function castCap(name, func) {
278
+ if (config.cap) {
279
+ var indexes = mapping.iterateeRearg[name];
280
+ if (indexes) {
281
+ return iterateeRearg(func, indexes);
282
+ }
283
+ var n = !isLib && mapping.iterateeAry[name];
284
+ if (n) {
285
+ return iterateeAry(func, n);
286
+ }
287
+ }
288
+ return func;
289
+ }
290
+
291
+ /**
292
+ * Casts `func` to a curried function if needed.
293
+ *
294
+ * @private
295
+ * @param {string} name The name of the function to inspect.
296
+ * @param {Function} func The function to inspect.
297
+ * @param {number} n The arity of `func`.
298
+ * @returns {Function} Returns the cast function.
299
+ */
300
+ function castCurry(name, func, n) {
301
+ return (forceCurry || (config.curry && n > 1))
302
+ ? curry(func, n)
303
+ : func;
304
+ }
305
+
306
+ /**
307
+ * Casts `func` to a fixed arity function if needed.
308
+ *
309
+ * @private
310
+ * @param {string} name The name of the function to inspect.
311
+ * @param {Function} func The function to inspect.
312
+ * @param {number} n The arity cap.
313
+ * @returns {Function} Returns the cast function.
314
+ */
315
+ function castFixed(name, func, n) {
316
+ if (config.fixed && (forceFixed || !mapping.skipFixed[name])) {
317
+ var data = mapping.methodSpread[name],
318
+ start = data && data.start;
319
+
320
+ return start === undefined ? ary(func, n) : flatSpread(func, start);
321
+ }
322
+ return func;
323
+ }
324
+
325
+ /**
326
+ * Casts `func` to an rearged function if needed.
327
+ *
328
+ * @private
329
+ * @param {string} name The name of the function to inspect.
330
+ * @param {Function} func The function to inspect.
331
+ * @param {number} n The arity of `func`.
332
+ * @returns {Function} Returns the cast function.
333
+ */
334
+ function castRearg(name, func, n) {
335
+ return (config.rearg && n > 1 && (forceRearg || !mapping.skipRearg[name]))
336
+ ? rearg(func, mapping.methodRearg[name] || mapping.aryRearg[n])
337
+ : func;
338
+ }
339
+
340
+ /**
341
+ * Creates a clone of `object` by `path`.
342
+ *
343
+ * @private
344
+ * @param {Object} object The object to clone.
345
+ * @param {Array|string} path The path to clone by.
346
+ * @returns {Object} Returns the cloned object.
347
+ */
348
+ function cloneByPath(object, path) {
349
+ path = toPath(path);
350
+
351
+ var index = -1,
352
+ length = path.length,
353
+ lastIndex = length - 1,
354
+ result = clone(Object(object)),
355
+ nested = result;
356
+
357
+ while (nested != null && ++index < length) {
358
+ var key = path[index],
359
+ value = nested[key];
360
+
361
+ if (value != null &&
362
+ !(isFunction(value) || isError(value) || isWeakMap(value))) {
363
+ nested[key] = clone(index == lastIndex ? value : Object(value));
364
+ }
365
+ nested = nested[key];
366
+ }
367
+ return result;
368
+ }
369
+
370
+ /**
371
+ * Converts `lodash` to an immutable auto-curried iteratee-first data-last
372
+ * version with conversion `options` applied.
373
+ *
374
+ * @param {Object} [options] The options object. See `baseConvert` for more details.
375
+ * @returns {Function} Returns the converted `lodash`.
376
+ */
377
+ function convertLib(options) {
378
+ return _.runInContext.convert(options)(undefined);
379
+ }
380
+
381
+ /**
382
+ * Create a converter function for `func` of `name`.
383
+ *
384
+ * @param {string} name The name of the function to convert.
385
+ * @param {Function} func The function to convert.
386
+ * @returns {Function} Returns the new converter function.
387
+ */
388
+ function createConverter(name, func) {
389
+ var realName = mapping.aliasToReal[name] || name,
390
+ methodName = mapping.remap[realName] || realName,
391
+ oldOptions = options;
392
+
393
+ return function(options) {
394
+ var newUtil = isLib ? pristine : helpers,
395
+ newFunc = isLib ? pristine[methodName] : func,
396
+ newOptions = assign(assign({}, oldOptions), options);
397
+
398
+ return baseConvert(newUtil, realName, newFunc, newOptions);
399
+ };
400
+ }
401
+
402
+ /**
403
+ * Creates a function that wraps `func` to invoke its iteratee, with up to `n`
404
+ * arguments, ignoring any additional arguments.
405
+ *
406
+ * @private
407
+ * @param {Function} func The function to cap iteratee arguments for.
408
+ * @param {number} n The arity cap.
409
+ * @returns {Function} Returns the new function.
410
+ */
411
+ function iterateeAry(func, n) {
412
+ return overArg(func, function(func) {
413
+ return typeof func == 'function' ? baseAry(func, n) : func;
414
+ });
415
+ }
416
+
417
+ /**
418
+ * Creates a function that wraps `func` to invoke its iteratee with arguments
419
+ * arranged according to the specified `indexes` where the argument value at
420
+ * the first index is provided as the first argument, the argument value at
421
+ * the second index is provided as the second argument, and so on.
422
+ *
423
+ * @private
424
+ * @param {Function} func The function to rearrange iteratee arguments for.
425
+ * @param {number[]} indexes The arranged argument indexes.
426
+ * @returns {Function} Returns the new function.
427
+ */
428
+ function iterateeRearg(func, indexes) {
429
+ return overArg(func, function(func) {
430
+ var n = indexes.length;
431
+ return baseArity(rearg(baseAry(func, n), indexes), n);
432
+ });
433
+ }
434
+
435
+ /**
436
+ * Creates a function that invokes `func` with its first argument transformed.
437
+ *
438
+ * @private
439
+ * @param {Function} func The function to wrap.
440
+ * @param {Function} transform The argument transform.
441
+ * @returns {Function} Returns the new function.
442
+ */
443
+ function overArg(func, transform) {
444
+ return function() {
445
+ var length = arguments.length;
446
+ if (!length) {
447
+ return func();
448
+ }
449
+ var args = Array(length);
450
+ while (length--) {
451
+ args[length] = arguments[length];
452
+ }
453
+ var index = config.rearg ? 0 : (length - 1);
454
+ args[index] = transform(args[index]);
455
+ return func.apply(undefined, args);
456
+ };
457
+ }
458
+
459
+ /**
460
+ * Creates a function that wraps `func` and applys the conversions
461
+ * rules by `name`.
462
+ *
463
+ * @private
464
+ * @param {string} name The name of the function to wrap.
465
+ * @param {Function} func The function to wrap.
466
+ * @returns {Function} Returns the converted function.
467
+ */
468
+ function wrap(name, func, placeholder) {
469
+ var result,
470
+ realName = mapping.aliasToReal[name] || name,
471
+ wrapped = func,
472
+ wrapper = wrappers[realName];
473
+
474
+ if (wrapper) {
475
+ wrapped = wrapper(func);
476
+ }
477
+ else if (config.immutable) {
478
+ if (mapping.mutate.array[realName]) {
479
+ wrapped = wrapImmutable(func, cloneArray);
480
+ }
481
+ else if (mapping.mutate.object[realName]) {
482
+ wrapped = wrapImmutable(func, createCloner(func));
483
+ }
484
+ else if (mapping.mutate.set[realName]) {
485
+ wrapped = wrapImmutable(func, cloneByPath);
486
+ }
487
+ }
488
+ each(aryMethodKeys, function(aryKey) {
489
+ each(mapping.aryMethod[aryKey], function(otherName) {
490
+ if (realName == otherName) {
491
+ var data = mapping.methodSpread[realName],
492
+ afterRearg = data && data.afterRearg;
493
+
494
+ result = afterRearg
495
+ ? castFixed(realName, castRearg(realName, wrapped, aryKey), aryKey)
496
+ : castRearg(realName, castFixed(realName, wrapped, aryKey), aryKey);
497
+
498
+ result = castCap(realName, result);
499
+ result = castCurry(realName, result, aryKey);
500
+ return false;
501
+ }
502
+ });
503
+ return !result;
504
+ });
505
+
506
+ result || (result = wrapped);
507
+ if (result == func) {
508
+ result = forceCurry ? curry(result, 1) : function() {
509
+ return func.apply(this, arguments);
510
+ };
511
+ }
512
+ result.convert = createConverter(realName, func);
513
+ result.placeholder = func.placeholder = placeholder;
514
+
515
+ return result;
516
+ }
517
+
518
+ /*--------------------------------------------------------------------------*/
519
+
520
+ if (!isObj) {
521
+ return wrap(name, func, defaultHolder);
522
+ }
523
+ var _ = func;
524
+
525
+ // Convert methods by ary cap.
526
+ var pairs = [];
527
+ each(aryMethodKeys, function(aryKey) {
528
+ each(mapping.aryMethod[aryKey], function(key) {
529
+ var func = _[mapping.remap[key] || key];
530
+ if (func) {
531
+ pairs.push([key, wrap(key, func, _)]);
532
+ }
533
+ });
534
+ });
535
+
536
+ // Convert remaining methods.
537
+ each(keys(_), function(key) {
538
+ var func = _[key];
539
+ if (typeof func == 'function') {
540
+ var length = pairs.length;
541
+ while (length--) {
542
+ if (pairs[length][0] == key) {
543
+ return;
544
+ }
545
+ }
546
+ func.convert = createConverter(key, func);
547
+ pairs.push([key, func]);
548
+ }
549
+ });
550
+
551
+ // Assign to `_` leaving `_.prototype` unchanged to allow chaining.
552
+ each(pairs, function(pair) {
553
+ _[pair[0]] = pair[1];
554
+ });
555
+
556
+ _.convert = convertLib;
557
+ _.placeholder = _;
558
+
559
+ // Assign aliases.
560
+ each(keys(_), function(key) {
561
+ each(mapping.realToAlias[key] || [], function(alias) {
562
+ _[alias] = _[key];
563
+ });
564
+ });
565
+
566
+ return _;
567
+ }
568
+
569
+ module.exports = baseConvert;