Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 240 Bytes

README.md

File metadata and controls

15 lines (9 loc) · 240 Bytes

Concat

Concat is a function that takes one to many arrays and return one combined array.

api

example

const concat = require('funfp').concat
const answer = concat([1,2,3], [4,5,6], [7,8,9])

README