Detalhes do pacote

clone-array

jonschlinkert845MIT0.1.2

Create a clone of an array.

clone, util, array, object

readme (leia-me)

clone-array NPM version

Create a clone of an array.

Install

$ npm i clone-array --save-dev

Usage

var a = ['a', 'b', 'c'];
var b = cloneArray(a);
a = a.concat('new');

console.log('a:', a);
//=> a: [ 'a', 'b', 'c', 'new' ]

console.log('b:', b);
//=> b: [ 'a', 'b', 'c' ]

Related projects

Running tests

Install dev dependencies:

$ npm i -d && npm test

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Author

Jon Schlinkert

License

Copyright © 2015 Jon Schlinkert Released under the MIT license.


This file was generated by verb-cli on August 23, 2015.