We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
dc = require('deepcopy') function foo(x,y){return x + y} a = {x:foo,y:'asdf'} b = {s:foo,t:'asdf'} dc([a,b]) #> [ { x: [Function: foo], y: 'asdf' }, #> { s: [Function: foo], t: [Function: foo] } ]