Should
_.concat([1], [2, [3], [[4]]]);
// => [ 1, 2, [ 3 ], [ [ 4 ] ] ]
Does
// => [ 1, 2, [ 3 ], [ [ 4 ] ] ]
https://gist.github.com/jfmengels/6b973b69c491375117dc#_indexofvalue-array
// Search from the `fromIndex`.
_.indexOf([2, 2], [1, 2, 1, 2]);
// => 3
fromIndex
param is ignored in fp, so it should not be grouped in an array. Even with that, the example would not return the expected result though.
Same as indexOf
_.intersection([[4, 2], [1, 2]], [2, 1]);
// => Expected [2]
// => Getting []
Intersection does not support more than 2 arrays
Same as intersection
Same as intersection
Same as zip, because it is using zip in the example
Same as zip, because it is using zip in the example
https://gist.github.com/jfmengels/6b973b69c491375117dc#_pullatindexes-array Too many console.logs removed and nothing remains...
Same as pullAt
Working, but there are useless trailing comments
Issue filed lodash/lodash#2122
Has one argument too many. Could send a PR for it.
Too many args in example
Uses key in cb function, which is capped in FP.
Uses defer with 2 args, which now only takes one
Uses defer with 2 args, which now only takes one
Arguments are not switched as expected
partials
param is ignored in fp, so it should not be grouped in an array. Even with that, the example would not return the expected result though.
Checked up to curry