innovationDriveApp/node_modules/es-abstract
2018-07-08 22:49:17 +10:00
..
helpers added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
operations added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
test added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
.editorconfig added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
.eslintrc added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
.jscs.json added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
.nycrc added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
.travis.yml added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
CHANGELOG.md added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
es5.js added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
es6.js added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
es7.js added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
es2015.js added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
es2016.js added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
es2017.js added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
GetIntrinsic.js added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
index.js added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
LICENSE added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
Makefile added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00
package.json deleted homepage in package.json 2018-07-08 22:49:17 +10:00
README.md added Now Ui react dashboard with logo 2018-07-08 19:21:40 +10:00

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