manfa940 14198d79d0 First commit před 3 týdny
..
.github 14198d79d0 First commit před 3 týdny
.eslintrc 14198d79d0 First commit před 3 týdny
.nycrc 14198d79d0 First commit před 3 týdny
CHANGELOG.md 14198d79d0 First commit před 3 týdny
LICENSE 14198d79d0 First commit před 3 týdny
README.md 14198d79d0 First commit před 3 týdny
index.d.ts 14198d79d0 First commit před 3 týdny
index.js 14198d79d0 First commit před 3 týdny
package.json 14198d79d0 First commit před 3 týdny
tsconfig.json 14198d79d0 First commit před 3 týdny

README.md

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