add all missing semi colons
This commit is contained in:
@ -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
|
||||||
|
|||||||
@ -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;
|
||||||
Reference in New Issue
Block a user