/
lostSun
/
project-client-server-apps
Обзор
Документация
Войти
/
lostSun
/
project-client-server-apps
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/strip-comments/lib/Node.js
28 строк
576 B
1lostsun
initial commit
05 май 2025, 11:35
05 май 2025, 11:35
fe8f535
Код
Авторство
О чём код?
'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 };