caoge c760052ff9 机车状态修改 | пре 8 месеци | |
---|---|---|
.. | ||
.github | пре 8 месеци | |
.eslintrc | пре 8 месеци | |
.nycrc | пре 8 месеци | |
CHANGELOG.md | пре 8 месеци | |
LICENSE | пре 8 месеци | |
README.md | пре 8 месеци | |
index.d.ts | пре 8 месеци | |
index.d.ts.map | пре 8 месеци | |
index.js | пре 8 месеци | |
package.json | пре 8 месеци | |
tsconfig.json | пре 8 месеци |
A robust, ES3 compatible, "has own property" predicate.
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);
Simply clone the repo, npm install
, and run npm test