3.2.1 • Published 4 years ago

dntly-cssjson v3.2.1

Weekly downloads
2
License
ISC
Repository
-
Last release
4 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

4 years ago

3.2.0

4 years ago

3.1.7

5 years ago

3.1.6

5 years ago

3.1.5

5 years ago

3.1.4

5 years ago

3.1.3

5 years ago

3.1.2

5 years ago

3.1.1

5 years ago

3.1.0

5 years ago