zioinfo-mail/workspace/guardia-manager/frontend/node_modules/es-define-property
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
test refactor(structure): consolidate all projects under workspace/ 2026-05-31 23:50:56 +09:00
.eslintrc 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
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

es-define-property Version Badge

github actions coverage License Downloads

npm badge

Object.defineProperty, but not IE 8's broken one.

Example

const assert = require('assert');

const $defineProperty = require('es-define-property');

if ($defineProperty) {
    assert.equal($defineProperty, Object.defineProperty);
} else if (Object.defineProperty) {
    assert.equal($defineProperty, false, 'this is IE 8');
} else {
    assert.equal($defineProperty, false, 'this is an ES3 engine');
}

Tests

Simply clone the repo, npm install, and run npm test

Security

Please email @ljharb or see https://tidelift.com/security if you have a potential security vulnerability to report.