v1.0 with SW PWA enabled
This commit is contained in:
28
frontend/node_modules/strip-comments/lib/Node.js
generated
vendored
Normal file
28
frontend/node_modules/strip-comments/lib/Node.js
generated
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
'use strict';
|
||||
|
||||
class Node {
|
||||
constructor(node) {
|
||||
this.type = node.type;
|
||||
if (node.value) this.value = node.value;
|
||||
if (node.match) this.match = node.match;
|
||||
this.newline = node.newline || '';
|
||||
}
|
||||
get protected() {
|
||||
return Boolean(this.match) && this.match[1] === '!';
|
||||
}
|
||||
}
|
||||
|
||||
class Block extends Node {
|
||||
constructor(node) {
|
||||
super(node);
|
||||
this.nodes = node.nodes || [];
|
||||
}
|
||||
push(node) {
|
||||
this.nodes.push(node);
|
||||
}
|
||||
get protected() {
|
||||
return this.nodes.length > 0 && this.nodes[0].protected === true;
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = { Node, Block };
|
||||
Reference in New Issue
Block a user