caoge c760052ff9 机车状态修改 8 mēneši atpakaļ
..
.github c760052ff9 机车状态修改 8 mēneši atpakaļ
.eslintrc c760052ff9 机车状态修改 8 mēneši atpakaļ
.nycrc c760052ff9 机车状态修改 8 mēneši atpakaļ
CHANGELOG.md c760052ff9 机车状态修改 8 mēneši atpakaļ
LICENSE c760052ff9 机车状态修改 8 mēneši atpakaļ
README.md c760052ff9 机车状态修改 8 mēneši atpakaļ
index.d.ts c760052ff9 机车状态修改 8 mēneši atpakaļ
index.d.ts.map c760052ff9 机车状态修改 8 mēneši atpakaļ
index.js c760052ff9 机车状态修改 8 mēneši atpakaļ
package.json c760052ff9 机车状态修改 8 mēneši atpakaļ
tsconfig.json c760052ff9 机车状态修改 8 mēneši atpakaļ

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