1.0.0 • Published 9 years ago

lumber-nominal-size-table v1.0.0

Weekly downloads
5
License
ISC
Repository
github
Last release
9 years ago

Build Status

lumber-nominal-size-table

table of nominal sizes to actual sizes based on american lumber standards

var table = require('lumber-nominal-size-table')

var size = table(2,4)
console.log(size)
// prints 

INSTALL

npm install

API

module,exports(width,height)

pass a nominal size and get the matching object in this format

{nominal_size:[w,h],actual_size:[w,h],weight_per_foot_lbs: number}

.each(fn)

pass a function as the each back and you can iterate the sizes.

return false to stop.