framework / node_modules / hasown /
..
.github update 1 year ago
.eslintrc update 1 year ago
.nycrc update 1 year ago
CHANGELOG.md update 1 year ago
LICENSE update 1 year ago
README.md update 1 year ago
index.d.ts update 1 year ago
index.js update 1 year ago
package.json update 1 year ago
tsconfig.json update 1 year ago
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