TradingAgents/web-ui/frontend/node_modules/hasown
unknown d8cb830841 111 2026-01-30 20:17:59 +08:00
..
.github 111 2026-01-30 20:17:59 +08:00
.eslintrc 111 2026-01-30 20:17:59 +08:00
.nycrc 111 2026-01-30 20:17:59 +08:00
CHANGELOG.md 111 2026-01-30 20:17:59 +08:00
LICENSE 111 2026-01-30 20:17:59 +08:00
README.md 111 2026-01-30 20:17:59 +08:00
index.d.ts 111 2026-01-30 20:17:59 +08:00
index.js 111 2026-01-30 20:17:59 +08:00
package.json 111 2026-01-30 20:17:59 +08:00
tsconfig.json 111 2026-01-30 20:17:59 +08:00

README.md

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