UNPKG

eris-keys

Version:

a JavaScript client library for eris-keys

36 lines (33 loc) 1.06 kB
var _curry2 = require('./internal/_curry2'); var assoc = require('./assoc'); var dissoc = require('./dissoc'); /** * Makes a shallow clone of an object, omitting the property at the given path. * Note that this copies and flattens prototype properties onto the new object * as well. All non-primitive properties are copied by reference. * * @func * @memberOf R * @since v0.11.0 * @category Object * @sig [String] -> {k: v} -> {k: v} * @param {Array} path The path to the value to omit * @param {Object} obj The object to clone * @return {Object} A new object without the property at path * @see R.assocPath * @example * * R.dissocPath(['a', 'b', 'c'], {a: {b: {c: 42}}}); //=> {a: {b: {}}} */ module.exports = _curry2(function dissocPath(path, obj) { switch (path.length) { case 0: return obj; case 1: return dissoc(path[0], obj); default: var head = path[0]; var tail = Array.prototype.slice.call(path, 1); return obj[head] == null ? obj : assoc(head, dissocPath(tail, obj[head]), obj); } });