Added the underscore node_module.
All checks were successful
Auto Maintenance Cycle / pre-commit Autoupdate (push) Successful in 39s
All checks were successful
Auto Maintenance Cycle / pre-commit Autoupdate (push) Successful in 39s
This commit is contained in:
24
node_modules/underscore/cjs/omit.js
generated
vendored
Normal file
24
node_modules/underscore/cjs/omit.js
generated
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
var restArguments = require('./restArguments.js');
|
||||
var isFunction = require('./isFunction.js');
|
||||
var negate = require('./negate.js');
|
||||
var map = require('./map.js');
|
||||
var _flatten = require('./_flatten.js');
|
||||
var contains = require('./contains.js');
|
||||
var pick = require('./pick.js');
|
||||
|
||||
// Return a copy of the object without the disallowed properties.
|
||||
var omit = restArguments(function(obj, keys) {
|
||||
var iteratee = keys[0], context;
|
||||
if (isFunction(iteratee)) {
|
||||
iteratee = negate(iteratee);
|
||||
if (keys.length > 1) context = keys[1];
|
||||
} else {
|
||||
keys = map(_flatten(keys, false, false), String);
|
||||
iteratee = function(value, key) {
|
||||
return !contains(keys, key);
|
||||
};
|
||||
}
|
||||
return pick(obj, iteratee, context);
|
||||
});
|
||||
|
||||
module.exports = omit;
|
Reference in New Issue
Block a user