Bakhtina Sofya b84cb877be 1st comm | пре 2 недеља | |
---|---|---|
.. | ||
.github | пре 2 недеља | |
test | пре 2 недеља | |
.eslintrc | пре 2 недеља | |
.nycrc | пре 2 недеља | |
CHANGELOG.md | пре 2 недеља | |
LICENSE | пре 2 недеља | |
README.md | пре 2 недеља | |
index.d.ts | пре 2 недеља | |
index.js | пре 2 недеља | |
package.json | пре 2 недеља | |
tsconfig.json | пре 2 недеља |
Object.defineProperty
, but not IE 8's broken one.
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');
}
Simply clone the repo, npm install
, and run npm test
Please email @ljharb or see https://tidelift.com/security if you have a potential security vulnerability to report.