javascript
javascript copied to clipboard
ISSUE#3032
Made some changes such as-
-
export const MY_CONSTANT = 'should obviously not be uppercased' . In place of THING_TO_BE_CHANGED, it created unnecessary confusion as export const is not going to change across different files.
-
Another is an example of //good coding in README - export const MY_EXPORTED_FUNCTION = () => { return 'hello function'; }; . As no example of this was already available in file.
Fixes #3032.