Irina Glushko 2389e7160b HW1 done | hace 3 años | |
---|---|---|
.. | ||
2015 | hace 3 años | |
2016 | hace 3 años | |
2017 | hace 3 años | |
2018 | hace 3 años | |
2019 | hace 3 años | |
2020 | hace 3 años | |
5 | hace 3 años | |
helpers | hace 3 años | |
operations | hace 3 años | |
test | hace 3 años | |
.editorconfig | hace 3 años | |
.eslintignore | hace 3 años | |
.eslintrc | hace 3 años | |
.gitattributes | hace 3 años | |
.nycrc | hace 3 años | |
CHANGELOG.md | hace 3 años | |
GetIntrinsic.js | hace 3 años | |
LICENSE | hace 3 años | |
README.md | hace 3 años | |
es2015.js | hace 3 años | |
es2016.js | hace 3 años | |
es2017.js | hace 3 años | |
es2018.js | hace 3 años | |
es2019.js | hace 3 años | |
es2020.js | hace 3 años | |
es5.js | hace 3 años | |
es6.js | hace 3 años | |
es7.js | hace 3 años | |
index.js | hace 3 años | |
package.json | hace 3 años |
ECMAScript spec abstract operations.
Every operation is available by edition/year and by name - for example, es-abstract/2020/Call
gives you the Call
operation from ES2020, es-abstract/5/Type
gives you the Type
operation from ES5.
All abstract operations are also available under an es5
/es2015
/es2016
/es2017
/es2018
/es2019
/es2020
entry point, and as a property on the main
export, but using deep imports is highly encouraged for bundle size and performance reasons. Non-deep entry points will be removed in the next semver-major release.
var ES = require('es-abstract');
var assert = require('assert');
assert(ES.isCallable(function () {}));
assert(!ES.isCallable(/a/g));
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.