3.2.1 • Published 5 years ago

dntly-cssjson v3.2.1

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

Donately CssJson

Convert CSS <> JSON && JSON <> CSS

For use as custom styles in a Donately Donation Form from Donately

Install

npm install dntly-cssjson

Usage

const DntlyCssJson = require('dntly-cssjson');

const myCss = `body {
  font-weight: bold;
}
h1 {
  font-size: 2em;
}
`

const myJson = { body: { 'font-weight': 'bold' }, h1: { 'font-size': '2em' } }

const convertedJson = DntlyCssJson.cssToJson(myCss)

const convertedCss = DntlyCssJson.jsonToCss(myJson)
3.2.1

5 years ago

3.2.0

6 years ago

3.1.7

6 years ago

3.1.6

6 years ago

3.1.5

6 years ago

3.1.4

6 years ago

3.1.3

6 years ago

3.1.2

6 years ago

3.1.1

6 years ago

3.1.0

6 years ago