Files
skills-here-run-place/node_modules/csso/cjs/clean/Raw.cjs
Alejandro Martinez f09af719cf Initial commit
2026-02-12 02:04:10 +01:00

14 lines
311 B
JavaScript

'use strict';
const utils = require('./utils.cjs');
function cleanRaw(node, item, list) {
// raw in stylesheet or block children
if (utils.isNodeChildrenList(this.stylesheet, list) ||
utils.isNodeChildrenList(this.block, list)) {
list.remove(item);
}
}
module.exports = cleanRaw;