caoge c760052ff9 机车状态修改 | пре 8 месеци | |
---|---|---|
.. | ||
2015 | пре 8 месеци | |
2016 | пре 8 месеци | |
2017 | пре 8 месеци | |
2018 | пре 8 месеци | |
2019 | пре 8 месеци | |
2020 | пре 8 месеци | |
2021 | пре 8 месеци | |
2022 | пре 8 месеци | |
2023 | пре 8 месеци | |
5 | пре 8 месеци | |
helpers | пре 8 месеци | |
operations | пре 8 месеци | |
.editorconfig | пре 8 месеци | |
.eslintrc | пре 8 месеци | |
.nycrc | пре 8 месеци | |
CHANGELOG.md | пре 8 месеци | |
GetIntrinsic.js | пре 8 месеци | |
LICENSE | пре 8 месеци | |
README.md | пре 8 месеци | |
es2015.js | пре 8 месеци | |
es2016.js | пре 8 месеци | |
es2017.js | пре 8 месеци | |
es2018.js | пре 8 месеци | |
es2019.js | пре 8 месеци | |
es2020.js | пре 8 месеци | |
es2021.js | пре 8 месеци | |
es2022.js | пре 8 месеци | |
es2023.js | пре 8 месеци | |
es5.js | пре 8 месеци | |
es6.js | пре 8 месеци | |
es7.js | пре 8 месеци | |
index.js | пре 8 месеци | |
package.json | пре 8 месеци |
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
/es2021
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.