Internet_Programming_Librar.../lab3/all/node_modules/hasown
2024-01-06 22:18:58 +04:00
..
.github all lab3 2024-01-06 22:18:58 +04:00
.eslintrc all lab3 2024-01-06 22:18:58 +04:00
.nycrc all lab3 2024-01-06 22:18:58 +04:00
CHANGELOG.md all lab3 2024-01-06 22:18:58 +04:00
index.d.ts all lab3 2024-01-06 22:18:58 +04:00
index.d.ts.map all lab3 2024-01-06 22:18:58 +04:00
index.js all lab3 2024-01-06 22:18:58 +04:00
LICENSE all lab3 2024-01-06 22:18:58 +04:00
package.json all lab3 2024-01-06 22:18:58 +04:00
README.md all lab3 2024-01-06 22:18:58 +04:00
tsconfig.json all lab3 2024-01-06 22:18:58 +04:00

hasown Version Badge

github actions coverage License Downloads

npm badge

A robust, ES3 compatible, "has own property" predicate.

Example

const assert = require('assert');
const hasOwn = require('hasown');

assert.equal(hasOwn({}, 'toString'), false);
assert.equal(hasOwn([], 'length'), true);
assert.equal(hasOwn({ a: 42 }, 'a'), true);

Tests

Simply clone the repo, npm install, and run npm test