zsydgithub 2f2f0c8be0 new 1 rok temu
..
.github 2f2f0c8be0 new 1 rok temu
.eslintrc 2f2f0c8be0 new 1 rok temu
.nycrc 2f2f0c8be0 new 1 rok temu
CHANGELOG.md 2f2f0c8be0 new 1 rok temu
LICENSE 2f2f0c8be0 new 1 rok temu
README.md 2f2f0c8be0 new 1 rok temu
index.d.ts 2f2f0c8be0 new 1 rok temu
index.d.ts.map 2f2f0c8be0 new 1 rok temu
index.js 2f2f0c8be0 new 1 rok temu
package.json 2f2f0c8be0 new 1 rok temu
tsconfig.json 2f2f0c8be0 new 1 rok temu

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