Open
Description
this works in es5
exports.new = function() {};
this fails in es6
export function new() {}
cos new
is a reserved keyword
only solution is to rename the export/import
lebab should at least show a warning
8000
this works in es5
exports.new = function() {};
this fails in es6
export function new() {}
cos new
is a reserved keyword
only solution is to rename the export/import
lebab should at least show a warning