JSPM

  • Created
  • Published
  • Downloads 45309570
  • Score
    100M100P100Q239636F
  • License MIT

ECMAScript spec abstract operations.

Package Exports

  • es-abstract
  • es-abstract/es5
  • es-abstract/es6
  • es-abstract/es7
  • es-abstract/helpers/isFinite

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (es-abstract) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

#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/es6/es7 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