mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
298 B
15 lines
298 B
5 years ago
|
const _ = require('lodash')
|
||
|
|
||
|
module.exports = {
|
||
|
async render() {
|
||
|
let output = this.input
|
||
|
|
||
|
for (let child of this.children) {
|
||
|
const renderer = require(`../${_.kebabCase(child.key)}/renderer.js`)
|
||
|
output = await renderer.init(output, child.config)
|
||
|
}
|
||
|
|
||
|
return output
|
||
|
}
|
||
|
}
|