Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.15.28.86
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
deep-equal /
Delete
Unzip
Name
Size
Permission
Date
Action
example
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
lib
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
test
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
.travis.yml
116
B
-rw-r--r--
2015-08-29 03:32
LICENSE
1.05
KB
-rw-r--r--
2015-08-29 03:31
index.js
2.98
KB
-rw-r--r--
2015-08-29 03:32
package.json
1.73
KB
-rw-r--r--
2021-02-04 21:24
readme.markdown
1.24
KB
-rw-r--r--
2015-08-29 03:31
Save
Rename
# deep-equal Node's `assert.deepEqual() algorithm` as a standalone module. This module is around [5 times faster](https://gist.github.com/2790507) than wrapping `assert.deepEqual()` in a `try/catch`. [](https://ci.testling.com/substack/node-deep-equal) [](https://travis-ci.org/substack/node-deep-equal) # example ``` js var equal = require('deep-equal'); console.dir([ equal( { a : [ 2, 3 ], b : [ 4 ] }, { a : [ 2, 3 ], b : [ 4 ] } ), equal( { x : 5, y : [6] }, { x : 5, y : 6 } ) ]); ``` # methods ``` js var deepEqual = require('deep-equal') ``` ## deepEqual(a, b, opts) Compare objects `a` and `b`, returning whether they are equal according to a recursive equality algorithm. If `opts.strict` is `true`, use strict equality (`===`) to compare leaf nodes. The default is to use coercive equality (`==`) because that's how `assert.deepEqual()` works by default. # install With [npm](http://npmjs.org) do: ``` npm install deep-equal ``` # test With [npm](http://npmjs.org) do: ``` npm test ``` # license MIT. Derived largely from node's assert module.