Socket
Socket
Sign inDemoInstall

utils-copy

Package Overview
Dependencies
6
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    utils-copy

Copy or deep clone a value to an arbitrary depth.


Version published
Maintainers
1
Install size
57.9 kB
Created

Readme

Source

Copy

NPM version Build Status Coverage Status Dependencies

Copy or deep clone a value to an arbitrary depth.

Installation

$ npm install utils-copy

For use in the browser, use browserify.

Usage

var createCopy = require( 'utils-copy' );
createCopy( value[, level] )

Copy or deep clone a value to an arbitrary depth. The function accepts both objects and primitives.

var value, copy;

// Primitives...
value = 'beep';
copy = createCopy( value );
// returns 'beep'

// Objects...
value = [{'a':1,'b':true,'c':[1,2,3]}];
copy = createCopy( value );
// returns [{'a':1,'b':true,'c':[1,2,3]}]

console.log( value[0].c === copy[0].c );
// returns false

The default behavior returns a full deep copy of any objects. To limit the copy depth, set the level option.

var value, copy;

value = [{'a':1,'b':true,'c':[1,2,3]}];

// Trivial case => return the same reference
copy = createCopy( value, 0 );
// returns [{'a':1,'b':true,'c':[1,2,3]}]

console.log( value[0] === copy[0] );
// returns true

// Shallow copy:
copy = createCopy( value, 1 );

console.log( value[0] === copy[0] );
// returns false

console.log( value[0].c === copy[0].c );
// returns true

// Deep copy:
copy = createCopy( value, 2 );

console.log( value[0].c === copy[0].c );
// returns false

Notes

  • List of supported values/types:

    • undefined
    • null
    • boolean/Boolean
    • string/String
    • number/Number
    • function
    • Object
    • Date
    • RegExp
    • Array
    • Int8Array
    • Uint8Array
    • Uint8ClampedArray
    • Init16Array
    • Uint16Array
    • Int32Array
    • Uint32Array
    • Float32Array
    • Float64Array
    • Buffer (Node.js)
  • List of unsupported values/types:

    • DOMElement: to copy DOM elements, use .cloneNode().
    • Set
    • Map
    • Error
    • URIError
    • ReferenceError
    • SyntaxError
    • RangeError
  • If you need support for any of the above types, feel free to file an issue or submit a pull request.

  • The implementation can handle circular references.

  • If a Number, String, or Boolean object is encountered, the value is cloned as a primitive. This behavior is intentional. The implementation is opinionated in wanting to avoid creating numbers, strings, and booleans via the new operator and a constructor.

  • functions are not cloned; their reference is copied.

  • Support for copying class instances is inherently fragile. Any instances with privileged access to variables (e.g., within closures) cannot be cloned. This stated, basic copying of class instances is supported. Provided an environment which supports ES5, the implementation is greedy and performs a deep clone of any arbitrary class instance and its properties. The implementation assumes that the concept of level applies only to the class instance reference, but not to its internal state.

    function Foo() {
    	this._data = [ 1, 2, 3, 4 ];
    	this._name = 'bar';
    	return this;
    }
    
    var foo = new Foo();
    var fooey = createCopy( foo );
    
    console.log( foo._name === fooey._name );
    // returns true
    
    console.log( foo._data === fooey._data );
    // returns false
    
    console.log( foo._data[0] === fooey._data[0] );
    // returns true
    
  • Re: why this implementation and not the many other copy/deep copy/clone/deep clone modules out there.

    1. They are buggy. For example, circular references are not properly tracked.
    2. They fail to account for Number, String, and Boolean objects.
    3. They fail to properly validate if a value is a Node Buffer object. They assume, for instance, a Node environment.
    4. They fail to clone class instances.
    5. They do not allow limiting the copy depth.
    6. They assume an array or object input value.
    7. They are not sufficiently tested.

Examples

var createCopy = require( 'utils-copy' );

var arr = [
	{
		'x': new Date(),
		'y': [Math.random(),Math.random()],
		'z': new Int32Array([1,2,3,4]),
		'label': 'Beep'
	},
	{
		'x': new Date(),
		'y': [Math.random(),Math.random()],
		'z': new Int32Array([3,1,2,4]),
		'label': 'Boop'
	}
];

var copy = createCopy( arr );

console.log( arr[ 0 ] === copy[ 0 ] );
// returns false

console.log( arr[ 1 ].y === copy[ 1 ].y );
// returns false


copy = createCopy( arr, 1 );

console.log( arr[ 0 ] === copy[ 0 ] );
// returns true

console.log( arr[ 1 ].z === copy[ 1 ].z );
// returns true

To run the example code from the top-level application directory,

$ node ./examples/index.js

Tests

Unit

Unit tests use the Mocha test framework with Chai assertions. To run the tests, execute the following command in the top-level application directory:

$ make test

All new feature development should have corresponding unit tests to validate correct functionality.

Test Coverage

This repository uses Istanbul as its code coverage tool. To generate a test coverage report, execute the following command in the top-level application directory:

$ make test-cov

Istanbul creates a ./reports/coverage directory. To access an HTML version of the report,

$ make view-cov

License

MIT license.

Copyright © 2015. Athan Reines.

Keywords

FAQs

Last updated on 05 Mar 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc