0.0.2 • Published 10 years ago

gridsize v0.0.2

Weekly downloads
2
License
-
Repository
github
Last release
10 years ago

gridsize

Build status

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 gridsize

component:

$ component install binocarlos/gridsize

var 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