orthodox
v1.0.1
Published
Render a style object into a style string
Downloads
2
Maintainers
Readme
A minimal implementation of the git.io/orthodox spec
Usage
const orthodox = require('orthodox');
orthodox({
height: '30px',
width: '20px',
'-webkit-user-select': 'none',
});
➔
height:30px;width:20px;-webkit-user-select:none
Why?
TL;DR: Interoperability between libraries.
More info in the main readme and the spec.