Mohammad Asif cf937194cb Removed un-waned things 1. | 5 hónapja | |
---|---|---|
.. | ||
.github | 5 hónapja | |
.eslintrc | 5 hónapja | |
.nycrc | 5 hónapja | |
CHANGELOG.md | 5 hónapja | |
LICENSE | 5 hónapja | |
README.md | 5 hónapja | |
index.d.ts | 5 hónapja | |
index.js | 5 hónapja | |
package.json | 5 hónapja | |
tsconfig.json | 5 hónapja |
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