mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-20 01:58:36 +00:00
10 lines
285 B
JavaScript
10 lines
285 B
JavaScript
|
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);
|
||
|
}
|
||
|
};
|