冯博深 e3294c98a1 first преди 2 дни
..
.github e3294c98a1 first преди 2 дни
.eslintrc e3294c98a1 first преди 2 дни
.nycrc e3294c98a1 first преди 2 дни
CHANGELOG.md e3294c98a1 first преди 2 дни
LICENSE e3294c98a1 first преди 2 дни
README.md e3294c98a1 first преди 2 дни
index.d.ts e3294c98a1 first преди 2 дни
index.js e3294c98a1 first преди 2 дни
package.json e3294c98a1 first преди 2 дни
tsconfig.json e3294c98a1 first преди 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