From c8f3ff9d1bae3e5933d90696cb32430b1a981d99 Mon Sep 17 00:00:00 2001 From: xandora Date: Tue, 18 May 2021 11:43:45 +1200 Subject: [PATCH] Update helloWorld/helloWorld.js semicolon after function expression --- helloWorld/helloWorld.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helloWorld/helloWorld.js b/helloWorld/helloWorld.js index 29e76b9..df27036 100644 --- a/helloWorld/helloWorld.js +++ b/helloWorld/helloWorld.js @@ -1,5 +1,5 @@ const helloWorld = function() { return '' -} +}; module.exports = helloWorld;