deep_tool

1.0.1 • Public • Published

HOW TO USE

Firstly, install deep_tool:

$ npm install deep_tool

Then require it and use.

const {compare, copy} = require('deep_tool');
 
let arr = [1, 2, 3, [4, 5]];
let arr_copy = copy(arr);
 
console.log(arr == arr_copy) // false
console.log(compare(arr, arr_copy)) // true
arr_copy[3] = 4;
console.log(compare(arr, arr_copy)) // false

Readme

Keywords

Package Sidebar

Install

npm i deep_tool

Weekly Downloads

2

Version

1.0.1

License

ISC

Unpacked Size

2.92 kB

Total Files

3

Last publish

Collaborators

  • don2quixote