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 /
object.hasown /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
drwxrwxr-x
test
[ DIR ]
drwxrwxr-x
.eslintrc
177
B
-rw-rw-r--
.nycrc
139
B
-rw-rw-r--
CHANGELOG.md
4.16
KB
-rw-rw-r--
LICENSE
1.09
KB
-rw-rw-r--
README.md
2.15
KB
-rw-rw-r--
auto.js
36
B
-rw-rw-r--
implementation.js
328
B
-rw-rw-r--
index.js
388
B
-rw-rw-r--
index.mjs
326
B
-rw-rw-r--
package.json
2.25
KB
-rw-rw-r--
polyfill.js
152
B
-rw-rw-r--
shim.js
311
B
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.md
# object.hasown <sup>[![Version Badge][npm-version-svg]][package-url]</sup> [![github actions][actions-image]][actions-url] [![coverage][codecov-image]][codecov-url] [![dependency status][deps-svg]][deps-url] [![dev dependency status][dev-deps-svg]][dev-deps-url] [![License][license-image]][license-url] [![Downloads][downloads-image]][downloads-url] [![npm badge][npm-badge-png]][package-url] An ES spec-compliant `Object.hasOwn` shim. Invoke its "shim" method to shim `Object.hasOwn` if it is unavailable or noncompliant. This package implements the [es-shim API](https://github.com/es-shims/api) interface. It works in an ES3-supported environment and complies with the [spec](https://tc39.es/proposal-accessible-object-hasownproperty/). Most common usage: ```js var assert = require('assert'); var hasOwn = require('object.hasown'); var obj = { a: 1, b: 2 }; assert(hasOwn(obj, 'a')); assert(hasOwn(obj, 'b')); assert('toString' in obj && !hasOwn(obj, 'toString')); if (!Object.hasOwn) { hasOwn.shim(); } assert.deepEqual(Object.hasOwn(obj, 'a'), hasOwn(obj, 'a')); ``` ## Tests Simply clone the repo, `npm install`, and run `npm test` [package-url]: https://npmjs.com/package/object.hasown [npm-version-svg]: https://versionbadg.es/es-shims/Object.hasOwn.svg [deps-svg]: https://david-dm.org/es-shims/Object.hasOwn.svg [deps-url]: https://david-dm.org/es-shims/Object.hasOwn [dev-deps-svg]: https://david-dm.org/es-shims/Object.hasOwn/dev-status.svg [dev-deps-url]: https://david-dm.org/es-shims/Object.hasOwn#info=devDependencies [npm-badge-png]: https://nodei.co/npm/object.hasown.png?downloads=true&stars=true [license-image]: https://img.shields.io/npm/l/object.hasown.svg [license-url]: LICENSE [downloads-image]: https://img.shields.io/npm/dm/object.hasown.svg [downloads-url]: https://npm-stat.com/charts.html?package=object.hasown [codecov-image]: https://codecov.io/gh/es-shims/Object.hasOwn/branch/main/graphs/badge.svg [codecov-url]: https://app.codecov.io/gh/es-shims/Object.hasOwn/ [actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/es-shims/Object.hasOwn [actions-url]: https://github.com/es-shims/Object.hasOwn/actions
Close