mirror of
https://gh.wpcy.net/https://github.com/djav1985/v-wordpress-plugin-updater.git
synced 2026-04-29 10:00:49 +08:00
13 lines
346 B
JavaScript
13 lines
346 B
JavaScript
/**
|
|
* Remove empty lines before a node. Mutates the node.
|
|
*
|
|
* @template {import('postcss').Node} T
|
|
* @param {T} node
|
|
* @param {string} newline
|
|
* @returns {T}
|
|
*/
|
|
export default function removeEmptyLinesBefore(node, newline) {
|
|
node.raws.before = node.raws.before ? node.raws.before.replace(/(\r?\n\s*\n)+/g, newline) : '';
|
|
|
|
return node;
|
|
}
|