Node-Red configuration
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ů.
Dirk Alders 97486731b5 Dashboard 2 - EG-West před 4 měsíci
..
.github Dashboard 2 - EG-West před 4 měsíci
test Dashboard 2 - EG-West před 4 měsíci
.eslintrc Dashboard 2 - EG-West před 4 měsíci
.nycrc Dashboard 2 - EG-West před 4 měsíci
CHANGELOG.md Dashboard 2 - EG-West před 4 měsíci
LICENSE Dashboard 2 - EG-West před 4 měsíci
README.md Dashboard 2 - EG-West před 4 měsíci
index.d.ts Dashboard 2 - EG-West před 4 měsíci
index.js Dashboard 2 - EG-West před 4 měsíci
package.json Dashboard 2 - EG-West před 4 měsíci
tsconfig.json Dashboard 2 - EG-West 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.