/var/www/flurhymez/node_modules/postcss/lib
NameSizeModeActions
at-rule.d.ts24660644editdlrm
at-rule.js4710644editdlrm
comment.d.ts13440644editdlrm
comment.js2030644editdlrm
container.d.ts125940644editdlrm
container.js102040644editdlrm
css-syntax-error.d.ts48440644editdlrm
css-syntax-error.js23210644editdlrm
declaration.d.ts30260644editdlrm
declaration.js4950644editdlrm
document.d.ts15240644editdlrm
document.js6540644editdlrm
fromJSON.d.ts1070644editdlrm
fromJSON.js15060644editdlrm
input.d.ts28120644editdlrm
input.js50570644editdlrm
lazy-result.d.ts48200644editdlrm
lazy-result.js134680644editdlrm
list.d.ts12620644editdlrm
list.js11670644editdlrm
map-generator.js76820644editdlrm
node.d.ts116750644editdlrm
node.js70800644editdlrm
parse.d.ts890644editdlrm
parse.js11470644editdlrm
parser.js136180644editdlrm
postcss.d.ts113380644editdlrm
postcss.js26280644editdlrm
postcss.mjs9370644editdlrm
previous-map.d.ts16180644editdlrm
previous-map.js39240644editdlrm
processor.d.ts29410644editdlrm
processor.js21320644editdlrm
result.d.ts40810644editdlrm
result.js7450644editdlrm
root.d.ts18560644editdlrm
root.js12090644editdlrm
rule.d.ts23630644editdlrm
rule.js5690644editdlrm
stringifier.js81640644editdlrm
stringify.d.ts1070644editdlrm
stringify.js2130644editdlrm
symbols.js910644editdlrm
terminal-highlight.js13990644editdlrm
tokenize.js65360644editdlrm
warn-once.js2240644editdlrm
warning.d.ts19330644editdlrm
warning.js6480644editdlrm
Edit: /var/www/flurhymez/node_modules/postcss/lib/root.js (1209B)
'use strict' let Container = require('./container') let LazyResult, Processor class Root extends Container { constructor(defaults) { super(defaults) this.type = 'root' if (!this.nodes) this.nodes = [] } removeChild(child, ignore) { let index = this.index(child) if (!ignore && index === 0 && this.nodes.length > 1) { this.nodes[1].raws.before = this.nodes[index].raws.before } return super.removeChild(child) } normalize(child, sample, type) { let nodes = super.normalize(child) if (sample) { if (type === 'prepend') { if (this.nodes.length > 1) { sample.raws.before = this.nodes[1].raws.before } else { delete sample.raws.before } } else if (this.first !== sample) { for (let node of nodes) { node.raws.before = sample.raws.before } } } return nodes } toResult(opts = {}) { let lazy = new LazyResult(new Processor(), this, opts) return lazy.stringify() } } Root.registerLazyResult = dependant => { LazyResult = dependant } Root.registerProcessor = dependant => { Processor = dependant } module.exports = Root Root.default = Root