flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
14
VISUALIZACION/node_modules/underscore/amd/difference.js
generated
vendored
Executable file
14
VISUALIZACION/node_modules/underscore/amd/difference.js
generated
vendored
Executable file
|
|
@ -0,0 +1,14 @@
|
|||
define(['./restArguments', './_flatten', './filter', './contains'], function (restArguments, _flatten, 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;
|
||||
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue