0.0.2 • Published 12 years ago
gridsize v0.0.2
gridsize

Input a number N and get a {width:X,height:X} object for a grid with at least N cells
var gridsize = require('gridsize');
var grid_2x2 = gridsize(4);
var grid_4x5 = gridsize(19);
var grid_5x4 = gridsize(19, true);installation
npm/browserify:
$ npm install gridsizecomponent:
$ component install binocarlos/gridsizevar grid = gridsize(count, portrait)
Return an object with:
- width
- height
properties that multiplied will be at least count.
If portraint is true then then height will be $gte width
licence
MIT