From 46efdf1bc099daba876d6e5955a9f12a95084dca Mon Sep 17 00:00:00 2001 From: King Date: Mon, 12 Feb 2018 22:47:17 -0500 Subject: [PATCH] add all missing semi colons --- snippets/permuteAll.md | 2 +- test/permuteAll/permuteAll.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/snippets/permuteAll.md b/snippets/permuteAll.md index 746b964e9..16a26cb3b 100644 --- a/snippets/permuteAll.md +++ b/snippets/permuteAll.md @@ -27,7 +27,7 @@ const permuteAll = (input) => { : (typeof input === 'number') ? result.map(variant => parseFloat(variant.join(''))) : result; -} +}; ``` ```js diff --git a/test/permuteAll/permuteAll.js b/test/permuteAll/permuteAll.js index facdd309b..eafd9b30b 100644 --- a/test/permuteAll/permuteAll.js +++ b/test/permuteAll/permuteAll.js @@ -22,5 +22,5 @@ return (typeof input === 'string') : (typeof input === 'number') ? result.map(variant => parseFloat(variant.join(''))) : result; -} +}; module.exports = permuteAll; \ No newline at end of file