diff --git a/index.js b/index.js index cd438a2..e7962de 100644 --- a/index.js +++ b/index.js @@ -1,3 +1,9 @@ function someFunction(something) { return 'anything'; } + +function anotherDummyFunction() { + someFunction(); +} +// or just +// someFunction;