1.1.0 • Published 6 years ago

inline-style-2-json v1.1.0

Weekly downloads
10
License
MIT
Repository
github
Last release
6 years ago

inline-style-2-json

Greenkeeper badge Build Status

Convert CSS inline styles to JSON

This is a small function that takes the content of a style tag (as a string) and outputs an object or a JSON string. This is useful if you are piping HTML through xml-objects or something similar and you want finer granularity.

Install

$ npm install --save inline-style-2-json

Usage

var inlineStyle2Json = require('inline-style-2-json');

inlineStyle2Json('position:absolute;h-index:9001;');
//=> "{ position: 'absolute', 'h-index': '9001'}"

inlineStyle2Json('position:absolute;h-index:9001;', {stringify: true});
//=> '{"position":"absolute","h-index":"9001"}'

API

inlineStyle2Json(input, options)

input

Type: string

This should be your inline style string.

options

stringify

Type: boolean
Default: false

Return stringified object.

Contribute

Sure! Open an issue, open a PR.

License

MIT © 2018 Richard Littauer

1.1.0

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

9 years ago

1.0.1

9 years ago

1.0.0

9 years ago