Skip to content

Commit 1fe5eb3

Browse files
siddharthkpCompuIves
authored andcommitted
arrow functions dont get arguments (codesandbox#2396)
1 parent 2a2204c commit 1fe5eb3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/common/src/templates/configuration/jsonlint.browser.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -716,4 +716,6 @@ var jsonlint = (function() {
716716
})();
717717

718718
exports.parser = jsonlint;
719-
exports.parse = () => jsonlint.parse.apply(jsonlint, arguments);
719+
exports.parse = function() {
720+
return jsonlint.parse.apply(jsonlint, arguments);
721+
};

0 commit comments

Comments
 (0)