Afanasev_Stepan_PIbd-21_IP/ИП 3 лаба/node_modules/hasown
[USERNAME] 0dd26716dc Lab2-5
2024-01-10 16:11:49 +04:00
..
.github Lab2-5 2024-01-10 16:11:49 +04:00
.eslintrc Lab2-5 2024-01-10 16:11:49 +04:00
.nycrc Lab2-5 2024-01-10 16:11:49 +04:00
CHANGELOG.md Lab2-5 2024-01-10 16:11:49 +04:00
index.d.ts Lab2-5 2024-01-10 16:11:49 +04:00
index.d.ts.map Lab2-5 2024-01-10 16:11:49 +04:00
index.js Lab2-5 2024-01-10 16:11:49 +04:00
LICENSE Lab2-5 2024-01-10 16:11:49 +04:00
package.json Lab2-5 2024-01-10 16:11:49 +04:00
README.md Lab2-5 2024-01-10 16:11:49 +04:00
tsconfig.json Lab2-5 2024-01-10 16:11:49 +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