GT2/GT2-Android/node_modules/es-abstract
Ren Ren Juan c5fd23b54f Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
..
helpers Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
operations Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
test Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
.editorconfig Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
.eslintrc Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
.jscs.json Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
.nycrc Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
.travis.yml Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
CHANGELOG.md Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
LICENSE Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
Makefile Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
README.md Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
es5.js Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
es6.js Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
es7.js Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
es2015.js Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
es2016.js Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
es2017.js Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
index.js Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00
package.json Get new tree with state verified with current React Native on both platforms 2018-02-12 17:11:06 +00:00

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