Is there a method in lodash to map over an array of arrays
I would like to do something like this so that it keeps the structure of the array.
def double
The simple way to do that at ES5:
[].concat(...this.array1.map(ap => ap.subArray))