mmpSearch/assets/js/creations/server/node_modules/es-define-property
JotaChina 73aed01b74
Deploy / Deploy (push) Successful in 2m2s Details
upload de projetos funcional + busca por bpm
2025-12-08 10:38:30 -03:00
..
.github upload de projetos funcional + busca por bpm 2025-12-08 10:38:30 -03:00
test upload de projetos funcional + busca por bpm 2025-12-08 10:38:30 -03:00
.eslintrc upload de projetos funcional + busca por bpm 2025-12-08 10:38:30 -03:00
.nycrc upload de projetos funcional + busca por bpm 2025-12-08 10:38:30 -03:00
CHANGELOG.md upload de projetos funcional + busca por bpm 2025-12-08 10:38:30 -03:00
LICENSE upload de projetos funcional + busca por bpm 2025-12-08 10:38:30 -03:00
README.md upload de projetos funcional + busca por bpm 2025-12-08 10:38:30 -03:00
index.d.ts upload de projetos funcional + busca por bpm 2025-12-08 10:38:30 -03:00
index.js upload de projetos funcional + busca por bpm 2025-12-08 10:38:30 -03:00
package.json upload de projetos funcional + busca por bpm 2025-12-08 10:38:30 -03:00
tsconfig.json upload de projetos funcional + busca por bpm 2025-12-08 10:38:30 -03:00

README.md

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.