diff --git a/fp/_mapping.js b/fp/_mapping.js index 4393bc319..a30c5dee4 100644 --- a/fp/_mapping.js +++ b/fp/_mapping.js @@ -304,7 +304,6 @@ exports.skipRearg = { 'range': true, 'rangeRight': true, 'subtract': true, - 'without': true, 'zip': true, 'zipObject': true }; diff --git a/test/test-fp.js b/test/test-fp.js index ad693558c..36db6597b 100644 --- a/test/test-fp.js +++ b/test/test-fp.js @@ -496,7 +496,7 @@ actual = fp.uniqBy(_.identity, other); assert.deepEqual(actual, ['b', 'd'], 'fp.uniqBy'); - actual = fp.without(array)(other); + actual = fp.without(other)(array); assert.deepEqual(actual, ['a', 'c'], 'fp.without'); actual = fp.xor(other)(array);