Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
Muqriz 48f16bfc3e initail first před 4 měsíci
..
.github initail first před 4 měsíci
test initail first před 4 měsíci
.eslintrc initail first před 4 měsíci
.nycrc initail first před 4 měsíci
CHANGELOG.md initail first před 4 měsíci
LICENSE initail first před 4 měsíci
README.md initail first před 4 měsíci
index.d.ts initail first před 4 měsíci
index.js initail first před 4 měsíci
package.json initail first před 4 měsíci
tsconfig.json initail first před 4 měsíci

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.