/var/www/greso.tech/server/nsm/node_modules/shallow-copy/example
NameSizeModeActions
array.js1820644editdlrm
object.js1750644editdlrm
Edit: /var/www/greso.tech/server/nsm/node_modules/shallow-copy/example/object.js (175B)
var copy = require('../'); var obj = { a: 3, b: 4, c: [5,6] }; var dup = copy(obj); dup.b *= 111; dup.c.push(7); console.log('original: ', obj); console.log('copy: ', dup);