mirror of
https://github.com/theoludwig/eslint-config-conventions.git
synced 2024-11-08 19:11:31 +01:00
6 lines
77 B
JavaScript
6 lines
77 B
JavaScript
const foo = 1
|
|
const bar = (argument) => {
|
|
return argument + foo
|
|
}
|
|
bar(foo)
|