make f253a535c5 first commit il y a 2 mois
..
.github f253a535c5 first commit il y a 2 mois
.eslintrc f253a535c5 first commit il y a 2 mois
.nycrc f253a535c5 first commit il y a 2 mois
CHANGELOG.md f253a535c5 first commit il y a 2 mois
LICENSE f253a535c5 first commit il y a 2 mois
README.md f253a535c5 first commit il y a 2 mois
index.d.ts f253a535c5 first commit il y a 2 mois
index.js f253a535c5 first commit il y a 2 mois
package.json f253a535c5 first commit il y a 2 mois
tsconfig.json f253a535c5 first commit il y a 2 mois

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