/var/www/greso.tech/server/nsm/node_modules/shallow-copy/test
NameSizeModeActions
array.js3350644editdlrm
object.js3270644editdlrm
Edit: /var/www/greso.tech/server/nsm/node_modules/shallow-copy/test/object.js (327B)
var copy = require('../'); var test = require('tape'); test('object', function (t) { t.plan(2); var obj = { a: 3, b: 4, c: [5,6] }; var dup = copy(obj); dup.b *= 111; dup.c.push(7); t.deepEqual(obj, { a: 3, b: 4, c: [ 5, 6, 7 ] }); t.deepEqual(dup, { a: 3, b: 444, c: [ 5, 6, 7 ] }); });