source: frontend/node_modules/webpack/lib/runtime/HelperRuntimeModule.js@ 9af201e

Last change on this file since 9af201e was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 544 bytes
Line 
1/*
2 MIT License http://www.opensource.org/licenses/mit-license.php
3*/
4
5"use strict";
6
7const RuntimeModule = require("../RuntimeModule");
8
9/**
10 * Base class for runtime modules that only emit helper functions and do not
11 * need special staging or attachment behavior beyond `RuntimeModule`.
12 */
13class HelperRuntimeModule extends RuntimeModule {
14 /**
15 * Creates a helper runtime module with the provided readable name.
16 * @param {string} name a readable name
17 */
18 constructor(name) {
19 super(name);
20 }
21}
22
23module.exports = HelperRuntimeModule;
Note: See TracBrowser for help on using the repository browser.