make f253a535c5 first commit 2 miesięcy temu
..
.github f253a535c5 first commit 2 miesięcy temu
.eslintrc f253a535c5 first commit 2 miesięcy temu
.nycrc f253a535c5 first commit 2 miesięcy temu
CHANGELOG.md f253a535c5 first commit 2 miesięcy temu
LICENSE f253a535c5 first commit 2 miesięcy temu
README.md f253a535c5 first commit 2 miesięcy temu
index.d.ts f253a535c5 first commit 2 miesięcy temu
index.js f253a535c5 first commit 2 miesięcy temu
package.json f253a535c5 first commit 2 miesięcy temu
tsconfig.json f253a535c5 first commit 2 miesięcy temu

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