Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

style-to-object

remarkablemark36.2mMIT1.0.8TypeScript support: included

Parse CSS inline style to JavaScript object.

style-to-object, inline, style, parser, css, object, pojo

readme

style-to-object

NPM

NPM version Bundlephobia minified + gzip build codecov NPM downloads

Parse CSS inline style to JavaScript object:

import parse from 'style-to-object';

parse('color: #C0FFEE; background: #BADA55;');

Output:

{ color: '#C0FFEE', background: '#BADA55' }

JSFiddle | Replit | Examples

Installation

NPM:

npm install style-to-object --save

Yarn:

yarn add style-to-object

CDN:

<script src="https://unpkg.com/style-to-object@latest/dist/style-to-object.min.js"></script>
<script>
  window.StyleToObject(/* string */);
</script>

Usage

Import with ES Modules:

import parse from 'style-to-object';

Require with CommonJS:

const parse = require('style-to-object').default;

Parse single declaration:

parse('line-height: 42');

Output:

{ 'line-height': '42' }

Parse multiple declarations:

parse(`
  border-color: #ACE;
  z-index: 1337;
`);

Output:

{ 'border-color': '#ACE', 'z-index': '1337' }

Parse unknown declarations:

parse('answer: 42;');

Output:

{ 'answer': '42' }

Invalid declarations/arguments:

parse(`
  top: ;
  right: 1em;
`); // { right: '1em' }

parse();        // null
parse(null);    // null
parse(1);       // null
parse(true);    // null
parse('top:');  // null
parse(':12px'); // null
parse(':');     // null
parse(';');     // null

parse('top'); // throws Error
parse('/*');  // throws Error

Iterator

If the 2nd argument is a function, then the parser will return null:

parse('color: #f00', () => {}); // null

But the function will iterate through each declaration:

parse('color: #f00', (name, value, declaration) => {
  console.log(name);        // 'color'
  console.log(value);       // '#f00'
  console.log(declaration); // { type: 'declaration', property: 'color', value: '#f00' }
});

This makes it easy to customize the output:

const style = `
  color: red;
  background: blue;
`;
const output = [];

function iterator(name, value) {
  output.push([name, value]);
}

parse(style, iterator);
console.log(output); // [['color', 'red'], ['background', 'blue']]

Migration

v1

Migrated to TypeScript. Iterator excludes Comment. CommonJS requires the .default key:

const parse = require('style-to-object').default;

Release

Release and publish are automated by Release Please.

Special Thanks

License

MIT

changelog

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

1.0.8 (2024-09-11)

Build System

  • deps: bump inline-style-parser from 0.2.3 to 0.2.4 (#383) (1d45c31)

1.0.7 (2024-08-28)

Continuous Integration

  • github: publish package to npm registry with provenance (496fc11)

1.0.6 (2024-03-27)

Build System

  • deps: bump inline-style-parser from 0.2.2 to 0.2.3 (#301) (22af20c)

1.0.5 (2023-12-01)

Bug Fixes

  • esm: fix ESM types by adding index.d.mts (73ae1d4), closes #205

1.0.4 (2023-10-31)

Bug Fixes

  • package: specify "types" in package.json (1cb585b)

1.0.3 (2023-10-20)

Bug Fixes

  • esm: ensure index.mjs is compatible with rollup umd build (40b92c3)

1.0.2 (2023-10-19)

Bug Fixes

  • package: add "/src" to files to fix source map warning (597666b)

1.0.1 (2023-10-17)

Bug Fixes

  • package: add types to exports in package.json (6d37b8c)

1.0.0 (2023-10-15)

⚠ BREAKING CHANGES

  • Iterator excludes Comment and CommonJS requires the default key.

Code Refactoring

0.4.4 (2023-10-15)

Bug Fixes

  • index: export default function and add Comment to index.d.ts (07d7c98)

0.4.3 (2023-10-14)

Build System

  • rollup: generate sourcemap for UMD build (463e4b5)

0.4.2 (2023-08-02)

Bug Fixes

  • do not throw error when loading library as UMD script (24bb01d)

0.4.1 (2023-01-16)

Bug Fixes

  • include types in export (3026691)

0.4.0 (2022-12-03)

Features

0.3.0 (2019-11-07)

Bug Fixes

  • index: update return type of main function (remove any) (c6e8a54)

Features

Tests

  • index: add test for TS declaration file (b029a4b)

0.2.3 (2019-06-22)

Build System

  • package: add field "files" and remove .npmignore (fdf3966)
  • package: update script build:min to generate sourcemap (a13be58)
  • package: upgrade devDependencies (377bb40)
  • rollup: remove uglify-es from config as it's unneeded (b0951e0)

Tests

  • organize and rename describe blocks (8d4c004)
  • organize data (test suites) into cases, errors, and invalids (513732b)
  • rename test/cases.js to test/data.js (75d084d)
  • data: add more test cases and errors (c9242c7)
  • data: refactor test data from object to array format (1a07a38)

0.2.2 (2018-09-13)

0.2.1 (2018-05-09)

Bug Fixes

0.2.0 (2017-11-26)

Features

  • parser: add optional argument iterator (a3deea8)

0.1.0 (2017-11-23)

Bug Fixes

  • parser: do not add to output if css value is empty (0759da7)

Features

  • parser: create client parser (cd85a31)
  • parser: create parser that returns null for invalid values (24f4f02)
  • parser: parse inline style to object with css.parse (04793b0)