Initial commit
This commit is contained in:
14
node_modules/underscore/amd/difference.js
generated
vendored
Normal file
14
node_modules/underscore/amd/difference.js
generated
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
define(['./_flatten', './restArguments', './filter', './contains'], function (_flatten, restArguments, filter, contains) {
|
||||
|
||||
// Take the difference between one array and a number of other arrays.
|
||||
// Only the elements present in just the first array will remain.
|
||||
var difference = restArguments(function(array, rest) {
|
||||
rest = _flatten(rest, true, true);
|
||||
return filter(array, function(value){
|
||||
return !contains(rest, value);
|
||||
});
|
||||
});
|
||||
|
||||
return difference;
|
||||
|
||||
});
|
Reference in New Issue
Block a user