wtb
what the box JavaScript dimension parser
npm install wtb --save
const wtb =
wtb(dimensions=0)
- dimensions are accepted in many formats shown in examples
- defaults to square
- negatives become positive
- handles any input without throwing errors
- string delimiter is any non numeric portion
- supports JavaScript number formats including integers, decimals, scientific notation
- plain objects support owned values while null objects support any depth
- returns an object with calculated properties whose values range from
0
toInfinity
area
is the calculatedwidth * height
aspect
is the calculated aspect ratiowidth / height
height
is the parsedheight
width
is the parsedwidth
squares
these examples are equivalent 30x30
squares
they return a square object
area: 900 aspect: 1 width: 30 height: 30
rectangles
these examples are equivalent rectangles
they return a rectangular object
area: 600 aspect: 15 width: 30 height: 20
aspect ratio
aspect
can determine portrait vs landscape orientation
const orientation = aspect > 1 ? "landscape" : "portrait"
compatiblity
- compatible in Node.js or CommonJS or any web browser
- uses universal module definition pattern
- if online unbundled then
wtb === window.wtb