UNPKG

egg-vuecli-webpack-dev-server

Version:
14 lines (11 loc) 272 B
'use strict'; const Engine = require('../../lib/fileSystem'); const FILESYSTEM = Symbol('Application#fileSystem'); module.exports = { get fileSystem() { if (!this[FILESYSTEM]) { this[FILESYSTEM] = new Engine(this); } return this[FILESYSTEM]; }, };