Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
Muqriz 48f16bfc3e initail first před 4 měsíci
..
.github initail first před 4 měsíci
.eslintrc initail first před 4 měsíci
.nycrc initail first před 4 měsíci
CHANGELOG.md initail first před 4 měsíci
LICENSE initail first před 4 měsíci
README.md initail first před 4 měsíci
index.d.ts initail first před 4 měsíci
index.js initail first před 4 měsíci
package.json initail first před 4 měsíci
tsconfig.json initail first před 4 měsíci

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