UNPKG

egg-view-xtpl

Version:
19 lines (15 loc) 289 B
'use strict'; const XTPL = Symbol('app#xtpl'); const engine = require('../../lib/engine'); module.exports = { /** * xtpl instance * @member {xtpl} Application#xtpl */ get xtpl() { if (!this[XTPL]) { this[XTPL] = engine(this); } return this[XTPL]; }, };