zioinfo-mail/workspace/guardia-manager/frontend/node_modules/hasown
DESKTOP-TKLFCPR\ython cfe2901a55 refactor(structure): consolidate all projects under workspace/
- itsm/    -> workspace/guardia-itsm/
- manager/ -> workspace/guardia-manager/
- app/     -> workspace/guardia-messenger/
- manual/  -> workspace/guardia-docs/

workspace/zioinfo-web/ unchanged.
git mv preserves full commit history.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-31 23:50:56 +09:00
..
.github refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
.nycrc refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
CHANGELOG.md refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
eslint.config.mjs refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
index.d.ts refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
index.js refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
LICENSE refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
package.json refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
README.md refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
tsconfig.json refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00

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