mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-25 05:59:26 +08:00
Add node modules and new code for release (#168)
Co-authored-by: OliverMKing <OliverMKing@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
ca8d2604ac
commit
a0f00e5017
+24
@@ -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