This repository has been archived on 2020-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
TripSit_Suite/node_modules/es-abstract
cranberry ed23347e56 Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
..
.github Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
5 Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
2015 Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
2016 Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
2017 Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
2018 Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
2019 Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
helpers Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
operations Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
test Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
.editorconfig Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
.eslintignore Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
.eslintrc Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
.gitattributes Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
.nycrc Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
.travis.yml Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
CHANGELOG.md Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
GetIntrinsic.js Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
LICENSE Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
README.md Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
es5.js Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
es6.js Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
es7.js Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
es2015.js Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
es2016.js Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
es2017.js Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
es2018.js Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
es2019.js Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
index.js Initial comission of TheLounge base files 2020-11-01 22:46:04 +00:00
package.json Initial comission of TheLounge base files 2020-11-01 22:46:04 +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/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.