setup-php/node_modules/es-abstract
Shivam Mathur 8f9786b73f init
2019-09-06 05:17:43 +05:30
..
.github init 2019-09-06 05:17:43 +05:30
helpers init 2019-09-06 05:17:43 +05:30
operations init 2019-09-06 05:17:43 +05:30
test init 2019-09-06 05:17:43 +05:30
.editorconfig init 2019-09-06 05:17:43 +05:30
.eslintrc init 2019-09-06 05:17:43 +05:30
.nycrc init 2019-09-06 05:17:43 +05:30
.travis.yml init 2019-09-06 05:17:43 +05:30
CHANGELOG.md init 2019-09-06 05:17:43 +05:30
es5.js init 2019-09-06 05:17:43 +05:30
es6.js init 2019-09-06 05:17:43 +05:30
es7.js init 2019-09-06 05:17:43 +05:30
es2015.js init 2019-09-06 05:17:43 +05:30
es2016.js init 2019-09-06 05:17:43 +05:30
es2017.js init 2019-09-06 05:17:43 +05:30
es2018.js init 2019-09-06 05:17:43 +05:30
es2019.js init 2019-09-06 05:17:43 +05:30
GetIntrinsic.js init 2019-09-06 05:17:43 +05:30
index.js init 2019-09-06 05:17:43 +05:30
LICENSE init 2019-09-06 05:17:43 +05:30
Makefile init 2019-09-06 05:17:43 +05:30
package.json init 2019-09-06 05:17:43 +05:30
README.md init 2019-09-06 05:17:43 +05:30

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.