Test migration to jest by hand
Apparently using regular expressions is way easier.
This commit is contained in:
3
test/flatten/flatten.js
Normal file
3
test/flatten/flatten.js
Normal file
@ -0,0 +1,3 @@
|
||||
const flatten = (arr, depth = 1) =>
|
||||
arr.reduce((a, v) => a.concat(depth > 1 && Array.isArray(v) ? flatten(v, depth - 1) : v), []);
|
||||
module.exports = flatten;
|
||||
Reference in New Issue
Block a user