Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
xzx 2ec7739298 [Version] V.3.8 před 4 roky
..
helpers [Version] V.3.8 před 4 roky
operations [Version] V.3.8 před 4 roky
test [Version] V.3.8 před 4 roky
.editorconfig [Version] V.3.8 před 4 roky
.eslintrc [Version] V.3.8 před 4 roky
.jscs.json [Version] V.3.8 před 4 roky
.nycrc [Version] V.3.8 před 4 roky
.travis.yml [Version] V.3.8 před 4 roky
CHANGELOG.md [Version] V.3.8 před 4 roky
GetIntrinsic.js [Version] V.3.8 před 4 roky
LICENSE [Version] V.3.8 před 4 roky
Makefile [Version] V.3.8 před 4 roky
README.md [Version] V.3.8 před 4 roky
es5.js [Version] V.3.8 před 4 roky
es6.js [Version] V.3.8 před 4 roky
es7.js [Version] V.3.8 před 4 roky
es2015.js [Version] V.3.8 před 4 roky
es2016.js [Version] V.3.8 před 4 roky
es2017.js [Version] V.3.8 před 4 roky
index.js [Version] V.3.8 před 4 roky
package.json [Version] V.3.8 před 4 roky

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