您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
Muqriz 48f16bfc3e initail first 4 个月前
..
.github initail first 4 个月前
.eslintrc initail first 4 个月前
.nycrc initail first 4 个月前
CHANGELOG.md initail first 4 个月前
LICENSE initail first 4 个月前
README.md initail first 4 个月前
index.d.ts initail first 4 个月前
index.js initail first 4 个月前
package.json initail first 4 个月前
tsconfig.json initail first 4 个月前

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