Skip to content

micro-js/clone-shallow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

clone-shallow

Build status Git tag NPM version Code style

Create a shallow clone of an object or array

Installation

$ npm install @f/clone-shallow

Usage

var clone = require('@f/clone-shallow')

var arr = [1, 2, 3, 4]
var newArr = clone(arr)

deepEqual(arr, newArr)
arr !== newArr

var obj = {a: 1, b: 2, c: 3}
var newObj = clone(obj)

deepEqual(obj, newObj)
obj !== newObj

API

cloneShallow(a)

  • a - The object or array to be cloned

Returns: A new object or array with identical contents to a.

License

MIT