/
Mikhail823
/
todo
Обзор
Документация
Войти
/
Mikhail823
/
todo
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/tailwindcss/lib/util/parseObjectStyles.js
36 строк
1 KB
Mikhail Popov
j
23 фев 2026, 16:12
23 фев 2026, 16:12
ff7232a
Код
Авторство
О чём код?
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); Object.defineProperty(exports, "default", { enumerable: true, get: function() { return parseObjectStyles; } }); const _postcss = /*#__PURE__*/ _interop_require_default(require("postcss")); const _postcssnested = /*#__PURE__*/ _interop_require_default(require("postcss-nested")); const _postcssjs = /*#__PURE__*/ _interop_require_default(require("postcss-js")); function _interop_require_default(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function parseObjectStyles(styles) { if (!Array.isArray(styles)) { return parseObjectStyles([ styles ]); } return styles.flatMap((style)=>{ return (0, _postcss.default)([ (0, _postcssnested.default)({ bubble: [ "screen" ] }) ]).process(style, { parser: _postcssjs.default }).root.nodes; }); }