UNPKG

@thi.ng/associative

Version:

ES Map/Set-compatible implementations with customizable equality semantics & supporting operations

10 lines (9 loc) 116 B
function dissoc(coll, keys) { for (let k of keys) { coll.delete(k); } return coll; } export { dissoc };