Remove without from skipRearg mapping. [closes #2365]

This commit is contained in:
John-David Dalton
2016-05-21 14:26:04 -07:00
parent 803dce242b
commit 40c5a6af49
2 changed files with 1 additions and 2 deletions

View File

@@ -304,7 +304,6 @@ exports.skipRearg = {
'range': true,
'rangeRight': true,
'subtract': true,
'without': true,
'zip': true,
'zipObject': true
};

View File

@@ -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);