seven c79d79ff8e 3333 преди 2 дни
..
.github c79d79ff8e 3333 преди 2 дни
.eslintrc c79d79ff8e 3333 преди 2 дни
.nycrc c79d79ff8e 3333 преди 2 дни
CHANGELOG.md c79d79ff8e 3333 преди 2 дни
LICENSE c79d79ff8e 3333 преди 2 дни
README.md c79d79ff8e 3333 преди 2 дни
index.d.ts c79d79ff8e 3333 преди 2 дни
index.js c79d79ff8e 3333 преди 2 дни
package.json c79d79ff8e 3333 преди 2 дни
tsconfig.json c79d79ff8e 3333 преди 2 дни

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