Muqriz 48f16bfc3e initail first | пре 4 месеци | |
---|---|---|
.. | ||
.github | пре 4 месеци | |
test | пре 4 месеци | |
.eslintrc | пре 4 месеци | |
.nycrc | пре 4 месеци | |
CHANGELOG.md | пре 4 месеци | |
LICENSE | пре 4 месеци | |
README.md | пре 4 месеци | |
index.d.ts | пре 4 месеци | |
index.js | пре 4 месеци | |
package.json | пре 4 месеци | |
tsconfig.json | пре 4 месеци |
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.