tree: 6d2692244f4a4d2d50d8c197df857ec0a0a3c3e0 [path history] [tgz]
  1. .github/
  2. helpers/
  3. operations/
  4. test/
  5. .editorconfig
  6. .eslintrc
  7. .nycrc
  8. .travis.yml
  9. CHANGELOG.md
  10. es2015.js
  11. es2016.js
  12. es2017.js
  13. es2018.js
  14. es2019.js
  15. es5.js
  16. es6.js
  17. es7.js
  18. GetIntrinsic.js
  19. index.js
  20. LICENSE
  21. Makefile
  22. package.json
  23. README.md
src/cobalt/debug/remote/devtools/node_modules/es-abstract/README.md

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.