make f253a535c5 first commit месяцев назад: 2
..
.github f253a535c5 first commit месяцев назад: 2
.eslintrc f253a535c5 first commit месяцев назад: 2
.nycrc f253a535c5 first commit месяцев назад: 2
CHANGELOG.md f253a535c5 first commit месяцев назад: 2
LICENSE f253a535c5 first commit месяцев назад: 2
README.md f253a535c5 first commit месяцев назад: 2
index.d.ts f253a535c5 first commit месяцев назад: 2
index.js f253a535c5 first commit месяцев назад: 2
package.json f253a535c5 first commit месяцев назад: 2
tsconfig.json f253a535c5 first commit месяцев назад: 2

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