mirror of
https://github.com/Dvorinka/ClubLogos.git
synced 2026-06-04 03:52:57 +00:00
14 lines
311 B
JavaScript
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;
|