mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 02:59:31 +08:00
5 lines
189 B
Text
5 lines
189 B
Text
'use strict';
|
|
const getValue = require('./getValue.js');
|
|
|
|
/** @type {(...rules: import('postcss').Declaration[]) => string} */
|
|
module.exports = (...rules) => rules.map(getValue).join(' ');
|