npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

clone-obj

v1.0.0

Published

Clone object with circular references, property descriptors, non-enumerable properties and more.

Downloads

4

Readme

node-clone-object

NPM version Dependency Status Travis CI codecov

Clone object with:

  • Circular references
  • Property descriptors
  • Symbol properties
  • Non-enumerable properties

Install

npm i clone-obj
// or
yarn add clone-obj

Requires node >= 6

Usage

const clone = require('clone-obj')
const newObj = clone(obj)

undefined or null

clone-obj will throw TypeError: Cannot clone undefined or null when cloning undefined or null.

Primitive values

clone-obj will return primitive values directly.

clone(1) === 1
clone(true) === true
clone('foo') === 'foo'

Objects

Object created by new operator

clone-obj will use obj.constructor to create new object.

const arr = []
clone(arr) !== arr

const foo = new Date()
const bar = clone(date)
bar !== foo
bar.getTime() === foo.getTime()

const foo = new Buffer('foo')
const bar = clone(date)
Buffer.isBuffer(bar)
bar !== foo
bar.toString() === foo.toString()

Plain object

const foo = { a: 1 }
const bar = clone(foo)
bar !== foo
bar.a === foo.a

Circular references

clone-obj will auto link circular references with cloned objects.

const foo = {}
foo.self = foo
const bar = clone(bar)

foo !== bar
foo.self !== bar.self
bar === bar.self
console.log(bar) // { self: [Circular] }

Property descriptors

clone-obj respects property descriptors.

const foo = {
  get baz () { return this._baz * 2 },
  set baz (val) { this._baz = val }
}
const bar = clone(foo)

typeof bar._baz === 'undefined'
isNaN(bar.baz)
bar.baz = 2
bar._baz === 2
bar.baz === 4

Symbols properties

const sym = Symbol('foo')
const foo = { [sym]: 1 }
const bar = clone(bar)
bar.hasOwnProperty(sym)
bar[sym] === foo[sym]

Non-enumerable properties

const foo = {}
Object.defineProperty(foo, 'baz', {
  enumerable: false,
  value: 1
})
const bar = clone(foo)

const descriptor = Object.getOwnPropertyDescriptor(bar. 'baz')
descriptor.enumrable === false
Object.keys(bar).length === 0
foo.baz === bar.baz === descriptor.value

Arrays

const foo = [1, {}]
const bar = clone(foo)
Array.isArray(foo)
foo !== bar
foo.length === bar.length
foo[0] === bar[0]
foo[1] !== bar[1]

const foo = { a: [1] }
const bar = clone(foo)
Array.isArray(bar.a)
foo.a !== bar.a
foo.a.length === bar.a.length