Skip to content

tiaanduplessis/obj-to-css

Folders and files

NameName
Last commit message
Last commit date

Latest commit

16354b6 Β· May 13, 2017

History

3 Commits
May 12, 2017
May 12, 2017
May 12, 2017
May 12, 2017
May 12, 2017
May 13, 2017
May 13, 2017
May 12, 2017
May 12, 2017
May 13, 2017
May 12, 2017

Repository files navigation

obj-to-css

Convert JS object to CSS declarations



Built with ❀︎ by Tiaan and contributors

Table of Contents

Table of Contents
  • About
  • Install
  • Usage
  • CLI
  • Contribute
  • License
  • Install

    $ npm install --save obj-to-css
    # OR
    $ yarn add obj-to-css

    Usage

    const ToCss = require('obj-to-css')
    
    const obj = {
      '.hello': {
        color: 'red'
      },
      '.foo': {
        background: 'pink'
      }
    }
    
    console.log(toCSS(obj)) // .hello{color:red}.foo{background:pink}

    CLI

    $ obj-to-css foo.json
    # .hello{color:red}.foo{background:pink}

    Contribute

    Contributions are welcome. Please open up an issue or create PR if you would like to help out.

    Note: If editing the README, please conform to the standard-readme specification.

    License

    Licensed under the MIT License.

    About

    Convert JS object to CSS declarations

    Topics

    Resources

    License

    Stars

    Watchers

    Forks

    Packages

    No packages published