Bug Report
Current Behavior
Input Code
REPL link here
const foo = [
"one", // One
"two", // Two
];
const bar = [
"one", // One
"two" // Two
];
transpiles to
"use strict";
var foo = ["one", // One
"two"];
var bar = ["one", // One
"two" // Two
];
Expected behavior/code
"use strict";
var foo = ["one", // One
"two" // Two
];
var bar = ["one", // One
"two" // Two
];
Babel Configuration (.babelrc, package.json, cli command)
See REPL link
Environment
See REPL link