UNPKG

moy-fp

Version:
11 lines (8 loc) 163 B
import curry from '../Function/curry' /** * [a] -> [a] -> [a] */ const concatList = curry( (list2, list1) => list1.concat(list2) ) export default concatList