add all missing semi colons

This commit is contained in:
King
2018-02-12 22:47:17 -05:00
parent 648ec56459
commit 46efdf1bc0
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ const permuteAll = (input) => {
: (typeof input === 'number') : (typeof input === 'number')
? result.map(variant => parseFloat(variant.join(''))) ? result.map(variant => parseFloat(variant.join('')))
: result; : result;
} };
``` ```
```js ```js

View File

@ -22,5 +22,5 @@ return (typeof input === 'string')
: (typeof input === 'number') : (typeof input === 'number')
? result.map(variant => parseFloat(variant.join(''))) ? result.map(variant => parseFloat(variant.join('')))
: result; : result;
} };
module.exports = permuteAll; module.exports = permuteAll;