add-px-to-style
Version:
Will add px to the end of style values which are Numbers
49 lines (40 loc) • 961 B
Markdown
# add-px-to-style
[](http://github.com/badges/stability-badges)
Will add px to the end of style values which are Numbers. The following style properties will not have px added.
- animationIterationCount
- boxFlex
- boxFlexGroup
- boxOrdinalGroup
- columnCount
- fillOpacity
- flex
- flexGrow
- flexPositive
- flexShrink
- flexNegative
- flexOrder
- gridRow
- gridColumn
- fontWeight
- lineClamp
- lineHeight
- opacity
- order
- orphans
- stopOpacity
- strokeDashoffset
- strokeOpacity
- strokeWidth
- tabSize
- widows
- zIndex
- zoom
## Usage
```
var addPxToStyle = require('add-px-to-style');
addPxToStyle('top', 22); // '22px'
addPxToStyle('zIndex', 3); // 3
```
[](https://www.npmjs.com/package/add-px-to-style)
## License
MIT, see [LICENSE.md](http://github.com/mikkoh/add-px-to-style/blob/master/LICENSE.md) for details.