Irina Glushko 2389e7160b HW1 done | před 3 roky | |
---|---|---|
.. | ||
2015 | před 3 roky | |
2016 | před 3 roky | |
2017 | před 3 roky | |
2018 | před 3 roky | |
2019 | před 3 roky | |
2020 | před 3 roky | |
5 | před 3 roky | |
helpers | před 3 roky | |
operations | před 3 roky | |
test | před 3 roky | |
.editorconfig | před 3 roky | |
.eslintignore | před 3 roky | |
.eslintrc | před 3 roky | |
.gitattributes | před 3 roky | |
.nycrc | před 3 roky | |
CHANGELOG.md | před 3 roky | |
GetIntrinsic.js | před 3 roky | |
LICENSE | před 3 roky | |
README.md | před 3 roky | |
es2015.js | před 3 roky | |
es2016.js | před 3 roky | |
es2017.js | před 3 roky | |
es2018.js | před 3 roky | |
es2019.js | před 3 roky | |
es2020.js | před 3 roky | |
es5.js | před 3 roky | |
es6.js | před 3 roky | |
es7.js | před 3 roky | |
index.js | před 3 roky | |
package.json | před 3 roky |
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.