1.0.0 • Published 6 years ago

object-string-to-css v1.0.0

Weekly downloads
2
License
ISC
Repository
-
Last release
6 years ago

object-string-to-css npm version Build Status

Convert object or strings into valid CSS

Install

$ npm install --save object-string-to-css

Usage

const objectStringToCSS = require('object-string-to-css');

objectStringToCSS({ 
  width: 100, 
  display: "flex",
  flexDirection: "column",
}, ".class")
/*
.class{
  width: 100px;
  display: flex;
  flex-direction: column;
}
*/

API

function (string|object objectToChange, string selector): string

Throws when

  • Invalid JSON
  • Invalid Parameter type

FAQ

Why?

Makes migrating my projects faster

Help

If there is any problem with the package, please create an issue on github. Thanks!