mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 17:37:50 +00:00
Ensure _.xor works with more than two arrays. [closes #2758]
This commit is contained in:
@@ -25264,7 +25264,7 @@
|
||||
assert.expect(2);
|
||||
|
||||
var actual = func([1, 1, 2, 5], [2, 2, 3, 5], [3, 4, 5, 5]);
|
||||
assert.deepEqual(actual, [1, 4, 5]);
|
||||
assert.deepEqual(actual, [1, 4]);
|
||||
|
||||
actual = func([1, 1]);
|
||||
assert.deepEqual(actual, [1]);
|
||||
|
||||
Reference in New Issue
Block a user