Returns a mapped array of items, or the fallback if list is null or undefined.
list
map([])(add(2))([3, 6, 9])// => [5, 8, 11]map([])(add(2))(undefined)// => [] Copy
map([])(add(2))([3, 6, 9])// => [5, 8, 11]map([])(add(2))(undefined)// => []
Generated using TypeDoc
Returns a mapped array of items, or the fallback if
list
is null or undefined.