Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
rpm-mcarman b9f7ec4306 First Commit há 3 anos
..
.github First Commit há 3 anos
5 First Commit há 3 anos
2015 First Commit há 3 anos
2016 First Commit há 3 anos
2017 First Commit há 3 anos
2018 First Commit há 3 anos
2019 First Commit há 3 anos
helpers First Commit há 3 anos
operations First Commit há 3 anos
test First Commit há 3 anos
.editorconfig First Commit há 3 anos
.eslintignore First Commit há 3 anos
.eslintrc First Commit há 3 anos
.gitattributes First Commit há 3 anos
.nycrc First Commit há 3 anos
.travis.yml First Commit há 3 anos
CHANGELOG.md First Commit há 3 anos
GetIntrinsic.js First Commit há 3 anos
LICENSE First Commit há 3 anos
README.md First Commit há 3 anos
es5.js First Commit há 3 anos
es6.js First Commit há 3 anos
es7.js First Commit há 3 anos
es2015.js First Commit há 3 anos
es2016.js First Commit há 3 anos
es2017.js First Commit há 3 anos
es2018.js First Commit há 3 anos
es2019.js First Commit há 3 anos
index.js First Commit há 3 anos
package.json First Commit há 3 anos

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/es2017/es2018/es2019 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

Security

Please email @ljharb or see https://tidelift.com/security if you have a potential security vulnerability to report.