safe-clone-deep
Safely deep clone an object. Will not clone nested objects.
Last updated 9 years ago by tracker1 .
ISC · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install safe-clone-deep 
SYNC missed versions from official npm registry.

safe-clone-deep module for JavaScript

NPM version Build Status

This module exposes a single function that accepts an object and clones it without circular references.

Installation

npm install safe-clone-deep

For Browser and AMD support see the dist/ directory.

Usage

// browser
// var clone = Object.safeCloneDeep

// node.js
var clone = require('safe-clone-deep');

var a = {};
a.a = a;
a.b = {};
a.b.a = a;
a.b.b = a.b;
a.c = {};
a.c.b = a.b;
a.c.c = a.c;
a.x = 1;
a.b.x = 2;
a.c.x = 3;
a.d = [0,a,1,a.b,2,a.c,3];

console.log(util.inspect(clone(a), {showHidden:false,depth:4}))
clone(a)

result...

{ a: undefined,
  b: { a: undefined, b: undefined, x: 2 },
  c: { b: { a: undefined, b: undefined, x: 2 }, c: undefined, x: 3 },
  x: 1,
  d:
   [ 0,
     undefined,
     1,
     { a: undefined, b: undefined, x: 2 },
     2,
     { b: { a: undefined, b: undefined, x: 2 }, c: undefined, x: 3 },
     3 ] }

Override circularValue

With the undefined as the default circularValue, JSON.stringify will not keep the keys, which is likely the desired result.

JSON.stringify(clone(a));

result

{"b":{"x":2},"c":{"b":{"x":2},"x":3},"x":1,"d":[0,null,1,{"x":2},2,{"b":{"x":2},"x":3},3]}

NOTE: when the circular value is in an array, null is used instead of undefined.

--

You can override the default behavior.

clone(a,'[Circular]');

result...

{ a: '[Circular]',
  b: { a: '[Circular]', b: '[Circular]', x: 2 },
  c:
   { b: { a: '[Circular]', b: '[Circular]', x: 2 },
     c: '[Circular]',
     x: 3 },
  x: 1,
  d:
   [ 0,
     '[Circular]',
     1,
     { a: '[Circular]', b: '[Circular]', x: 2 },
     2,
     { b: { a: '[Circular]', b: '[Circular]', x: 2 },
       c: '[Circular]',
       x: 3 },
     3 ] }

License

The Internet Software Consortium License (ISC)

Copyright (c) 2014, Michael J. Ryan tracker1@gmail.com

Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.

THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

Current Tags

  • 1.1.5                                ...           latest (9 years ago)

11 Versions

  • 1.1.5                                ...           9 years ago
  • 1.1.4                                ...           9 years ago
  • 1.1.3                                ...           9 years ago
  • 1.1.2                                ...           11 years ago
  • 1.1.1                                ...           11 years ago
  • 1.1.0                                ...           11 years ago
  • 1.0.5                                ...           11 years ago
  • 1.0.4 [deprecated]           ...           11 years ago
  • 1.0.3 [deprecated]           ...           12 years ago
  • 1.0.2 [deprecated]           ...           12 years ago
  • 1.0.0 [deprecated]           ...           12 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 1
Dependencies (0)
None
Dev Dependencies (14)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |