Package Exports
- es-abstract
- es-abstract/es2015
- es-abstract/es2017
- es-abstract/es5
- es-abstract/es6
- es-abstract/es7
- es-abstract/helpers/isFinite
- es-abstract/helpers/isNaN
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 
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 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

