Snow 1d0b9c5323 增加了node环境 1 maand geleden
..
.github 1d0b9c5323 增加了node环境 1 maand geleden
.eslintrc 1d0b9c5323 增加了node环境 1 maand geleden
.nycrc 1d0b9c5323 增加了node环境 1 maand geleden
CHANGELOG.md 1d0b9c5323 增加了node环境 1 maand geleden
LICENSE 1d0b9c5323 增加了node环境 1 maand geleden
README.md 1d0b9c5323 增加了node环境 1 maand geleden
index.d.ts 1d0b9c5323 增加了node环境 1 maand geleden
index.js 1d0b9c5323 增加了node环境 1 maand geleden
package.json 1d0b9c5323 增加了node环境 1 maand geleden
tsconfig.json 1d0b9c5323 增加了node环境 1 maand geleden

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