Sha256: 47d61c608c22ef9f3f850fc9feec4374358de829b52a86e5cb320860b4119ae1
Contents?: true
Size: 572 Bytes
Versions: 62
Compression:
Stored size: 572 Bytes
Contents
define(['../array/slice', '../array/contains'], function(slice, contains){ /** * Return a copy of the object, filtered to only contain properties except the blacklisted keys. */ function omit(obj, var_keys){ var keys = typeof arguments[1] !== 'string'? arguments[1] : slice(arguments, 1), out = {}; for (var property in obj) { if (obj.hasOwnProperty(property) && !contains(keys, property)) { out[property] = obj[property]; } } return out; } return omit; });
Version data entries
62 entries across 62 versions & 1 rubygems