From daaec6edaa178ea336731e107d1c8714f3f1cee9 Mon Sep 17 00:00:00 2001 From: jmarceli Date: Mon, 20 May 2019 18:10:50 +0200 Subject: [PATCH] Update index.js --- index.js | 6 ++++++ 1 file changed, 6 insertions(+) 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;