npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

clone-array

0.1.2

@jonschlinkert

npmHomeRepoSnykSocket
Downloads:20
$ npm install clone-array
DailyWeeklyMonthlyYearly

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

  • 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

  • github/jonschlinkert
  • twitter/jonschlinkert

License

Copyright © 2015 Jon Schlinkert Released under the MIT license.


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