ramda
Version:
A practical functional library for JavaScript programmers.
22 lines • 718 B
JavaScript
var _curry2 = /*#__PURE__*/require("./internal/_curry2.js");
var dissocPath = /*#__PURE__*/require("./dissocPath.js");
/**
* Returns a new object that does not contain a `prop` property.
*
* @func
* @memberOf R
* @since v0.10.0
* @category Object
* @sig String -> {k: v} -> {k: v}
* @param {String} prop The name of the property to dissociate
* @param {Object} obj The object to clone
* @return {Object} A new object equivalent to the original but without the specified property
* @see R.assoc, R.omit
* @example
*
* R.dissoc('b', {a: 1, b: 2, c: 3}); //=> {a: 1, c: 3}
*/
var dissoc = /*#__PURE__*/_curry2(function dissoc(prop, obj) {
return dissocPath([prop], obj);
});
module.exports = dissoc;