objss

1.0.3 • Public • Published

objss

Converts JavaScript style objects into CSS-like strings.

npm i objss
const objss = require('objss')
 
const css = objss({
  margin: 16,
  color: 'tomato'
})
// 'margin:16px;color:tomato;'
 
const css = objss({
  color: 'tomato',
  ':hover': {
    color: 'green'
  }
})
// 'color:tomato;&:hover{color:green;}'

What is this for?

Sometimes CSS-in-JS solutions require tagged template literals.

JavaScript object literals are often easier to work with.

This can be used in place of tagged template literals.

foo([objss({ color: 'tomato' })])
// The same as foo`color:tomato;`

There might be other use-cases as well.

Related:

The reverse of this:

css-to-object

MIT License

Readme

Keywords

none

Package Sidebar

Install

npm i objss

Weekly Downloads

240

Version

1.0.3

License

MIT

Last publish

Collaborators

  • jxnblk