Skip to content

Commit 5a3723e

Browse files
committed
Fix eslint issue (workaround)
1 parent f05f5e6 commit 5a3723e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

JavaScript/lib/submodule1.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
'use strict';
22

3-
const method11 = () => 11;
3+
const method11 = () => {
4+
const result = Object.keys(global);
5+
return result;
6+
};
47
const method12 = () => 12;
58

69
module.exports = { method11, method12 };

0 commit comments

Comments
 (0)