zsydgithub 2f2f0c8be0 new 1 năm trước cách đây
..
.github 2f2f0c8be0 new 1 năm trước cách đây
.eslintrc 2f2f0c8be0 new 1 năm trước cách đây
.nycrc 2f2f0c8be0 new 1 năm trước cách đây
CHANGELOG.md 2f2f0c8be0 new 1 năm trước cách đây
LICENSE 2f2f0c8be0 new 1 năm trước cách đây
README.md 2f2f0c8be0 new 1 năm trước cách đây
index.d.ts 2f2f0c8be0 new 1 năm trước cách đây
index.d.ts.map 2f2f0c8be0 new 1 năm trước cách đây
index.js 2f2f0c8be0 new 1 năm trước cách đây
package.json 2f2f0c8be0 new 1 năm trước cách đây
tsconfig.json 2f2f0c8be0 new 1 năm trước cách đây

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