source: imaps-frontend/node_modules/@babel/preset-env/lib/shipped-proposals.js@ 79a0317

main
Last change on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 4 days ago

F4 Finalna Verzija

  • Property mode set to 100644
File size: 1.4 KB
Line 
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.proposalSyntaxPlugins = exports.proposalPlugins = exports.pluginSyntaxMap = void 0;
7const proposalPlugins = exports.proposalPlugins = new Set([]);
8const proposalSyntaxPlugins = exports.proposalSyntaxPlugins = ["syntax-import-assertions", "syntax-import-attributes"];
9const pluginSyntaxObject = {
10 "transform-async-generator-functions": "syntax-async-generators",
11 "transform-class-properties": "syntax-class-properties",
12 "transform-class-static-block": "syntax-class-static-block",
13 "transform-export-namespace-from": "syntax-export-namespace-from",
14 "transform-json-strings": "syntax-json-strings",
15 "transform-nullish-coalescing-operator": "syntax-nullish-coalescing-operator",
16 "transform-numeric-separator": "syntax-numeric-separator",
17 "transform-object-rest-spread": "syntax-object-rest-spread",
18 "transform-optional-catch-binding": "syntax-optional-catch-binding",
19 "transform-optional-chaining": "syntax-optional-chaining",
20 "transform-private-methods": "syntax-class-properties",
21 "transform-private-property-in-object": "syntax-private-property-in-object",
22 "transform-unicode-property-regex": null
23};
24const pluginSyntaxEntries = Object.keys(pluginSyntaxObject).map(function (key) {
25 return [key, pluginSyntaxObject[key]];
26});
27const pluginSyntaxMap = exports.pluginSyntaxMap = new Map(pluginSyntaxEntries);
28
29//# sourceMappingURL=shipped-proposals.js.map
Note: See TracBrowser for help on using the repository browser.