f1816d7f64c2ce90590f1d6e2d12f7db103c317688df2765a8261546fd446a4b27e0199c1ecfd1d366fb958c8e6537aee1f785af333885237c7924ae876f8e 285 B

123456789
  1. var { isNodeChildrenList } = require('./utils');
  2. module.exports = function cleanRaw(node, item, list) {
  3. // raw in stylesheet or block children
  4. if (isNodeChildrenList(this.stylesheet, list) ||
  5. isNodeChildrenList(this.block, list)) {
  6. list.remove(item);
  7. }
  8. };