lodash-transpose Adds matrix transpose functionality to lodash. Usage var _ = require("lodash-transpose"); // Includes lodash var matrix = [ [1, 2, 3], [4, 5, 6]]; _.isMatrix(matrix); // => true_.transpose(matrix); // => [[1, 4], [2, 5], [3, 6]]