Package Exports
- parse-rect
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (parse-rect) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
parse-rect

Take any rectangle-like argument and return rectangle values.
const parseRect = require('parse-rect')
// {x: 10, y: 20, width: 90, height: 80}
parseRect('10 20 100 100')
parseRect(10, 20, 100, 100)
parseRect([10, 20, 100, 100])
parseRect({ x: 10, y: 20, width: 90, height: 80 })
parseRect({ x: 10, y: 20, w: 90, h: 80 })
parseRect({ l: 10, t: 20, r: 100, b: 100 })
parseRect({ left: 10, top: 20, right: 100, bottom: 100 })
// {x: 0, y: 0, width: 90, height: 80}
parseRect({ width: 90, height: 80 })
parseRect([ 90, 80 ])
// {x: 0, y: 0, width: 90, height: 90}
parseRect(90)
parseRect([90])
License
(c) 2018 Dmitry Yv. MIT License