fxl 37aa67060c 08.01demo пре 4 месеци
..
.github 37aa67060c 08.01demo пре 4 месеци
.eslintrc 37aa67060c 08.01demo пре 4 месеци
.nycrc 37aa67060c 08.01demo пре 4 месеци
CHANGELOG.md 37aa67060c 08.01demo пре 4 месеци
LICENSE 37aa67060c 08.01demo пре 4 месеци
README.md 37aa67060c 08.01demo пре 4 месеци
index.d.ts 37aa67060c 08.01demo пре 4 месеци
index.js 37aa67060c 08.01demo пре 4 месеци
package.json 37aa67060c 08.01demo пре 4 месеци
tsconfig.json 37aa67060c 08.01demo пре 4 месеци

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