冯博深 e3294c98a1 first vor 2 Tagen
..
.github e3294c98a1 first vor 2 Tagen
.eslintrc e3294c98a1 first vor 2 Tagen
.nycrc e3294c98a1 first vor 2 Tagen
CHANGELOG.md e3294c98a1 first vor 2 Tagen
LICENSE e3294c98a1 first vor 2 Tagen
README.md e3294c98a1 first vor 2 Tagen
index.d.ts e3294c98a1 first vor 2 Tagen
index.js e3294c98a1 first vor 2 Tagen
package.json e3294c98a1 first vor 2 Tagen
tsconfig.json e3294c98a1 first vor 2 Tagen

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