Sha256: 0abc21ffb41814bc74ca92535592db1226c800dcead3edaab5eee9b5b084000b
Contents?: true
Size: 462 Bytes
Versions: 34
Compression:
Stored size: 462 Bytes
Contents
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; } module.exports = _objectWithoutPropertiesLoose; module.exports["default"] = module.exports, module.exports.__esModule = true;
Version data entries
34 entries across 33 versions & 5 rubygems