coronamap/node_modules/es-abstract
2020-06-14 00:00:00 -07:00
..
.github Migrate 2020-06-14 00:00:00 -07:00
5 Migrate 2020-06-14 00:00:00 -07:00
2015 Migrate 2020-06-14 00:00:00 -07:00
2016 Migrate 2020-06-14 00:00:00 -07:00
2017 Migrate 2020-06-14 00:00:00 -07:00
2018 Migrate 2020-06-14 00:00:00 -07:00
2019 Migrate 2020-06-14 00:00:00 -07:00
helpers Migrate 2020-06-14 00:00:00 -07:00
operations Migrate 2020-06-14 00:00:00 -07:00
test Migrate 2020-06-14 00:00:00 -07:00
.editorconfig Migrate 2020-06-14 00:00:00 -07:00
.eslintignore Migrate 2020-06-14 00:00:00 -07:00
.eslintrc Migrate 2020-06-14 00:00:00 -07:00
.gitattributes Migrate 2020-06-14 00:00:00 -07:00
.nycrc Migrate 2020-06-14 00:00:00 -07:00
.travis.yml Migrate 2020-06-14 00:00:00 -07:00
CHANGELOG.md Migrate 2020-06-14 00:00:00 -07:00
es5.js Migrate 2020-06-14 00:00:00 -07:00
es6.js Migrate 2020-06-14 00:00:00 -07:00
es7.js Migrate 2020-06-14 00:00:00 -07:00
es2015.js Migrate 2020-06-14 00:00:00 -07:00
es2016.js Migrate 2020-06-14 00:00:00 -07:00
es2017.js Migrate 2020-06-14 00:00:00 -07:00
es2018.js Migrate 2020-06-14 00:00:00 -07:00
es2019.js Migrate 2020-06-14 00:00:00 -07:00
GetIntrinsic.js Migrate 2020-06-14 00:00:00 -07:00
index.js Migrate 2020-06-14 00:00:00 -07:00
LICENSE Migrate 2020-06-14 00:00:00 -07:00
package.json Migrate 2020-06-14 00:00:00 -07:00
README.md Migrate 2020-06-14 00:00:00 -07:00

es-abstract Version Badge

Build Status dependency status dev dependency status License Downloads

npm badge

browser support

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.