mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 23:03:36 +01:00
10 lines
285 B
JavaScript
Vendored
10 lines
285 B
JavaScript
Vendored
var { isNodeChildrenList } = require('./utils');
|
|
|
|
module.exports = function cleanRaw(node, item, list) {
|
|
// raw in stylesheet or block children
|
|
if (isNodeChildrenList(this.stylesheet, list) ||
|
|
isNodeChildrenList(this.block, list)) {
|
|
list.remove(item);
|
|
}
|
|
};
|