New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@lxfriday/deepcopy

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@lxfriday/deepcopy

deepcopy for javascript

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

deepcopy

deep copy for javascript

install

npm i @lxfriday/deepcopy -S
# or
yarn add @lxfriday/deepcopy

params

one or more object

return

the deep copy result

usage

var deepCopy = require('deepcopy');
var obj = { a: 1, b: 2, c: { cc: 3 } };
var result = deepCopy({}, obj);
console.log(result.c === obj.c); // false

obj.c.cc = 15;

console.log(result.c.cc); // 3

Keywords

deepcopy

FAQs

Package last updated on 22 Sep 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts