UNPKG
@s-awaken/lotide
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Syrym's project for Lighthouse Labs Bootcamp
github.com/s-awaken/lotide
s-awaken/lotide
@s-awaken/lotide
/
flatten.js
6 lines
(4 loc)
•
118 B
JavaScript
View Raw
1
2
3
4
5
6
const
flatten =
function
(
array
) {
return
array.
reduce
(
(
acc, x
) =>
acc.
concat
(x), []); };
module
.
exports
= flatten;