Files
IWD2-02/INFO-3168 (JS 2)/Projects/Project2/Levi-McLean-customers-app/node_modules/hasown/README.md
T
2026-03-25 16:10:17 -04:00

1.6 KiB

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