clone-array
Create a clone of an array.
Install
$ npm i clone-array --save-dev
Usage
var a = 'a' 'b' 'c';var b = ;a = a; console;//=> a: [ 'a', 'b', 'c', 'new' ] console;//=> b: [ 'a', 'b', 'c' ]
Related projects
- arr-diff: Returns an array with only the unique values from the first array, by excluding all… more | homepage
- array-intersection: Return an array with the unique values present in all given arrays using strict equality… more | homepage
- array-union: Create an array of unique values, in order, from the input arrays | homepage
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.