mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-24 17:35:16 +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);
|
|
}
|
|
};
|