mirror of
https://github.com/OliveTin/OliveTin
synced 2025-12-18 03:55:32 +00:00
33 lines
903 B
JavaScript
33 lines
903 B
JavaScript
// NOTICE: This file is generated by Rollup. To modify it,
|
|
// please instead edit the ESM counterpart and rebuild with Rollup (npm run build).
|
|
'use strict';
|
|
|
|
const addEmptyLineBefore = require('./addEmptyLineBefore.cjs');
|
|
const validateTypes = require('./validateTypes.cjs');
|
|
const removeEmptyLinesBefore = require('./removeEmptyLinesBefore.cjs');
|
|
|
|
/**
|
|
* fix callback for *-empty-line-before rules
|
|
* @param {object} o
|
|
* @param {import('postcss').Node} o.node
|
|
* @param {string=} o.newline
|
|
* @param {'add'|'remove'} o.action
|
|
* @throws {TypeError}
|
|
*/
|
|
function fixEmptyLinesBefore({ node, newline, action }) {
|
|
validateTypes.assert(newline);
|
|
|
|
switch (action) {
|
|
case 'add':
|
|
addEmptyLineBefore(node, newline);
|
|
break;
|
|
case 'remove':
|
|
removeEmptyLinesBefore(node, newline);
|
|
break;
|
|
default:
|
|
throw new TypeError(`Unknown action ${action}`);
|
|
}
|
|
}
|
|
|
|
module.exports = fixEmptyLinesBefore;
|