0.2.1 • Published 8 years ago

lodash-transpose v0.2.1

Weekly downloads
190
License
MIT
Repository
github
Last release
8 years ago

lodash-transpose Build Status

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]]