ryanemax c30f18a9e0 feat: face feat68 model 3 bulan lalu
..
.github c30f18a9e0 feat: face feat68 model 3 bulan lalu
.eslintrc c30f18a9e0 feat: face feat68 model 3 bulan lalu
.nycrc c30f18a9e0 feat: face feat68 model 3 bulan lalu
CHANGELOG.md c30f18a9e0 feat: face feat68 model 3 bulan lalu
LICENSE c30f18a9e0 feat: face feat68 model 3 bulan lalu
README.md c30f18a9e0 feat: face feat68 model 3 bulan lalu
index.d.ts c30f18a9e0 feat: face feat68 model 3 bulan lalu
index.js c30f18a9e0 feat: face feat68 model 3 bulan lalu
package.json c30f18a9e0 feat: face feat68 model 3 bulan lalu
tsconfig.json c30f18a9e0 feat: face feat68 model 3 bulan lalu

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