prettify example

This commit is contained in:
Stefan Feješ
2018-01-11 09:42:11 +01:00
parent c7e34da1b0
commit 6ddb1adf94

View File

@ -15,5 +15,5 @@ const flatten = (arr, depth = 1) =>
```
```js
flatten([1, [2], 3, 4]); // [1,2,3,4]
flatten([1, [2], 3, 4]); // [1, 2, 3, 4]
```