Snow 1d0b9c5323 增加了node环境 | hace 1 mes | |
---|---|---|
.. | ||
.github | hace 1 mes | |
.eslintrc | hace 1 mes | |
.nycrc | hace 1 mes | |
CHANGELOG.md | hace 1 mes | |
LICENSE | hace 1 mes | |
README.md | hace 1 mes | |
index.d.ts | hace 1 mes | |
index.js | hace 1 mes | |
package.json | hace 1 mes | |
tsconfig.json | hace 1 mes |
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