Name | Last modified | Size | Description | |
---|---|---|---|---|
Parent Directory | - | |||
src/ | 2023-10-19 15:45 | - | ||
test/ | 2023-10-19 15:45 | - | ||
LICENSE-MIT | 2023-10-19 15:45 | 1.0K | f0d2fc9 test post-receive hook [كارل مبارك] | |
package.json | 2023-10-19 15:45 | 956 | 120707f added node version q18.16 to dependincies [كارل مبارك] | |
README.md | 2023-10-19 15:45 | 239 | 15de0e0 styling, texts [كارل مبارك] |
# has > Object.prototype.hasOwnProperty.call shortcut ## Installation ```sh npm install --save has ``` ## Usage ```js var has = require('has'); has({}, 'hasOwnProperty'); // false has(Object.prototype, 'hasOwnProperty'); // true ```