es-abstract
ECMAScript spec abstract operations.
Last updated 4 years ago by ljharb .
MIT · Repository · Bugs · Original npm
$ cnpm install es-abstract 
SYNC missed versions from official npm registry.

es-abstract Version Badge

dependency status dev dependency status License Downloads

npm badge

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 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.

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.

Current Tags

  • 1.21.2                                ...           latest (2 years ago)
  • 1.20.3                                ...           next (3 years ago)

19 Versions

  • 1.21.2                                ...           2 years ago
  • 1.21.1                                ...           3 years ago
  • 1.21.0                                ...           3 years ago
  • 1.20.3                                ...           3 years ago
  • 1.20.4                                ...           3 years ago
  • 1.20.1                                ...           3 years ago
  • 1.20.0                                ...           3 years ago
  • 1.19.1                                ...           4 years ago
  • 1.18.6                                ...           4 years ago
  • 1.18.5                                ...           4 years ago
  • 1.18.3                                ...           4 years ago
  • 1.18.0-next.3                                ...           4 years ago
  • 1.18.0                                ...           4 years ago
  • 1.17.7                                ...           5 years ago
  • 1.18.0-next.2                                ...           5 years ago
  • 1.18.0-next.0                                ...           5 years ago
  • 1.17.0-next.1                                ...           6 years ago
  • 1.17.6                                ...           5 years ago
  • 1.17.5                                ...           5 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (17)
Dev Dependencies (22)
Dependents (0)
None

Copyright 2013 - present © cnpmjs.org