Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
events /
node_modules /
shallowequal /
[ HOME SHELL ]
Name
Size
Permission
Action
LICENSE
1.09
KB
-rw-rw-r--
README.md
2.24
KB
-rw-rw-r--
index.js
979
B
-rw-rw-r--
index.js.flow
185
B
-rw-rw-r--
index.original.js
1.07
KB
-rw-rw-r--
package.json
1.64
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.md
# shallowequal [](https://travis-ci.org/dashed/shallowequal) [](https://npmjs.com/shallowequal) [](https://www.npmjs.com/package/shallowequal) [](https://greenkeeper.io/) > `shallowequal` is like lodash's [`isEqualWith`](https://lodash.com/docs/4.17.4#isEqualWith) but for shallow (strict) equal. `shallowequal(value, other, [customizer], [thisArg])` Performs a ***shallow equality*** comparison between two values (i.e. `value` and `other`) to determine if they are equivalent. The equality is performed by iterating through keys on the given `value`, and returning `false` whenever any key has values which are not **strictly equal** between `value` and `other`. Otherwise, return `true` whenever the values of all keys are strictly equal. If `customizer` (expected to be a function) is provided it is invoked to compare values. If `customizer` returns `undefined` (i.e. `void 0`), then comparisons are handled by the `shallowequal` function instead. The `customizer` is bound to `thisArg` and invoked with three arguments: `(value, other, key)`. **NOTE:** Docs are (shamelessly) adapted from [lodash's v3.x docs](https://lodash.com/docs/3.10.1#isEqualWith) ## Install ```sh $ yarn add shallowequal # npm v5+ $ npm install shallowequal # before npm v5 $ npm install --save shallowequal ``` ## Usage ```js const shallowequal = require('shallowequal'); const object = { 'user': 'fred' }; const other = { 'user': 'fred' }; object == other; // → false shallowequal(object, other); // → true ``` ## Credit Code for `shallowEqual` originated from https://github.com/gaearon/react-pure-render/ and has since been refactored to have the exact same API as `lodash.isEqualWith` (as of `v4.17.4`). ## Development - `node.js` and `npm`. See: https://github.com/creationix/nvm#installation - `yarn`. See: https://yarnpkg.com/en/docs/install - `npm` dependencies. Run: `yarn install` ### Chores - Lint: `yarn lint` - Test: `yarn test` - Pretty: `yarn pretty` - Pre-publish: `yarn prepublish` ## License MIT.
Close