/
Alcatraz
/
Wagomon
Обзор
Документация
Войти
/
Alcatraz
/
Wagomon
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/postcss-scss/lib/nested-declaration.js
12 строк
259 B
saitgalineu
fix
27 фев 2026, 12:39
27 фев 2026, 12:39
a5092f1
Код
Авторство
О чём код?
const { Container } = require('postcss') class NestedDeclaration extends Container { constructor(defaults) { super(defaults) this.type = 'decl' this.isNested = true if (!this.nodes) this.nodes = [] } } module.exports = NestedDeclaration