Skip to content

Files

Latest commit

Jul 11, 2023
3dd6dc0 · Jul 11, 2023

History

History
63 lines (51 loc) · 1.23 KB

README.md

File metadata and controls

63 lines (51 loc) · 1.23 KB

css-to-object

Библиотека для конвертирования CSS в объект JS.

Установка

npm install sedlab/css-to-object#latest --save или yarn add sedlab/css-to-object#latest

Использование

ES6

import { cssToObject } from "css-to-object";

ES5

const { cssToObject } = require("css-to-object");

Пример

cssToObject(`
  height: 800px;
  background-color: #f6f4e6;
  #1233 .class-name {
    height: 800px;
    background-color: #f6f4e6;
  }
  @media screen and (max-width: 1199px) {
    #1233 .class-name {
      height: 800px;
      background-color: #f6f4e6;
    }
  }
  @media screen and (max-width: 1199px) {
    #1234 .class-name {
      height: 800px;
      background-color: #f6f4e6;
    }
    #1234 .class-name {
      width: 100%;
    }
  }
`, { numbers: true, camel: true });

Результат:

{
  "height": 800,
  "backgroundColor": "#f6f4e6",
  "#1233 .class-name": { "height": 800, "backgroundColor": "#f6f4e6" },
  "@media screen and (max-width: 1199px)": {
    "#1233 .class-name": { "height": 800, "backgroundColor": "#f6f4e6" },
    "#1234 .class-name": { "height": 800, "backgroundColor": "#f6f4e6", "width": 100 }
  }
}