make f253a535c5 first commit hace 2 meses
..
.github f253a535c5 first commit hace 2 meses
.eslintrc f253a535c5 first commit hace 2 meses
.nycrc f253a535c5 first commit hace 2 meses
CHANGELOG.md f253a535c5 first commit hace 2 meses
LICENSE f253a535c5 first commit hace 2 meses
README.md f253a535c5 first commit hace 2 meses
index.d.ts f253a535c5 first commit hace 2 meses
index.js f253a535c5 first commit hace 2 meses
package.json f253a535c5 first commit hace 2 meses
tsconfig.json f253a535c5 first commit hace 2 meses

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