icepick icon indicating copy to clipboard operation
icepick copied to clipboard

Utilities for treating frozen JavaScript objects as persistent immutable collections

Results 2 icepick issues
Sort by recently updated
recently updated
newest added

Consider the following snippet, run against Icepick 2.4.0: ``` var icepick = require("icepick") const BEFORE = { first: { name: "First", items: [{key: "first-a", value: 12}] }, second: { name:...

I find `assocIn` etc to be useful, and sometimes wish similar functions existed for the other functions. Here's a prototype of an `at` (because `in` is a reserved word) function...

enhancement