source: trip-planner-front/node_modules/postcss/lib/document.js@ ceaed42

Last change on this file since ceaed42 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 654 bytes
Line 
1'use strict'
2
3let Container = require('./container')
4
5let LazyResult, Processor
6
7class Document extends Container {
8 constructor(defaults) {
9 // type needs to be passed to super, otherwise child roots won't be normalized correctly
10 super({ type: 'document', ...defaults })
11
12 if (!this.nodes) {
13 this.nodes = []
14 }
15 }
16
17 toResult(opts = {}) {
18 let lazy = new LazyResult(new Processor(), this, opts)
19
20 return lazy.stringify()
21 }
22}
23
24Document.registerLazyResult = dependant => {
25 LazyResult = dependant
26}
27
28Document.registerProcessor = dependant => {
29 Processor = dependant
30}
31
32module.exports = Document
33Document.default = Document
Note: See TracBrowser for help on using the repository browser.