Permalink
Cannot retrieve contributors at this time
34 lines (30 sloc)
733 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/es-abstract/index.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var assign = require('./helpers/assign'); | |
var ES5 = require('./es5'); | |
var ES2015 = require('./es2015'); | |
var ES2016 = require('./es2016'); | |
var ES2017 = require('./es2017'); | |
var ES2018 = require('./es2018'); | |
var ES2019 = require('./es2019'); | |
var ES2020 = require('./es2020'); | |
var ES2021 = require('./es2021'); | |
var ES2022 = require('./es2022'); | |
var ES2023 = require('./es2023'); | |
var ES = { | |
ES5: ES5, | |
ES6: ES2015, | |
ES2015: ES2015, | |
ES7: ES2016, | |
ES2016: ES2016, | |
ES2017: ES2017, | |
ES2018: ES2018, | |
ES2019: ES2019, | |
ES2020: ES2020, | |
ES2021: ES2021, | |
ES2022: ES2022, | |
ES2023: ES2023 | |
}; | |
assign(ES, ES5); | |
delete ES.CheckObjectCoercible; // renamed in ES6 to RequireObjectCoercible | |
assign(ES, ES2015); | |
module.exports = ES; |