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

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