xiezhiming bcc6bf9d94 修改 1 year ago
..
2015 bcc6bf9d94 修改 1 year ago
2016 bcc6bf9d94 修改 1 year ago
2017 bcc6bf9d94 修改 1 year ago
2018 bcc6bf9d94 修改 1 year ago
2019 bcc6bf9d94 修改 1 year ago
2020 bcc6bf9d94 修改 1 year ago
5 bcc6bf9d94 修改 1 year ago
helpers bcc6bf9d94 修改 1 year ago
operations bcc6bf9d94 修改 1 year ago
test bcc6bf9d94 修改 1 year ago
.editorconfig bcc6bf9d94 修改 1 year ago
.eslintignore bcc6bf9d94 修改 1 year ago
.eslintrc bcc6bf9d94 修改 1 year ago
.gitattributes bcc6bf9d94 修改 1 year ago
.nycrc bcc6bf9d94 修改 1 year ago
CHANGELOG.md bcc6bf9d94 修改 1 year ago
GetIntrinsic.js bcc6bf9d94 修改 1 year ago
LICENSE bcc6bf9d94 修改 1 year ago
README.md bcc6bf9d94 修改 1 year ago
es2015.js bcc6bf9d94 修改 1 year ago
es2016.js bcc6bf9d94 修改 1 year ago
es2017.js bcc6bf9d94 修改 1 year ago
es2018.js bcc6bf9d94 修改 1 year ago
es2019.js bcc6bf9d94 修改 1 year ago
es2020.js bcc6bf9d94 修改 1 year ago
es5.js bcc6bf9d94 修改 1 year ago
es6.js bcc6bf9d94 修改 1 year ago
es7.js bcc6bf9d94 修改 1 year ago
index.js bcc6bf9d94 修改 1 year ago
package.json bcc6bf9d94 修改 1 year ago

README.md

es-abstract Version Badge

dependency status dev dependency status License Downloads

npm badge

ECMAScript spec abstract operations. When different versions of the spec conflict, the default export will be the latest version of the abstract operation. All abstract operations will also be available under an es5/es2015/es2016/es2017/es2018/es2019 entry point, and exported property, if you require a specific version.

Example

var ES = require('es-abstract');
var assert = require('assert');

assert(ES.isCallable(function () {}));
assert(!ES.isCallable(/a/g));

Tests

Simply clone the repo, npm install, and run npm test

Security

Please email @ljharb or see https://tidelift.com/security if you have a potential security vulnerability to report.