mirror of
https://github.com/theoludwig/eslint-config-conventions.git
synced 2025-05-18 12:02:33 +02:00
6 lines
77 B
JavaScript
6 lines
77 B
JavaScript
const foo = 1
|
|
const bar = (argument) => {
|
|
return argument + foo
|
|
}
|
|
bar(foo)
|