WXL
3 天以前 3bd962a6d7f61239c020e2dbbeb7341e5b842dd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
    MIT License http://www.opensource.org/licenses/mit-license.php
*/
 
"use strict";
 
const RuntimeModule = require("../RuntimeModule");
 
/**
 * Base class for runtime modules that only emit helper functions and do not
 * need special staging or attachment behavior beyond `RuntimeModule`.
 */
class HelperRuntimeModule extends RuntimeModule {
    /**
     * Creates a helper runtime module with the provided readable name.
     * @param {string} name a readable name
     */
    constructor(name) {
        super(name);
    }
}
 
module.exports = HelperRuntimeModule;