Last change
on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
319 bytes
|
Line | |
---|
1 | /*
|
---|
2 | MIT License http://www.opensource.org/licenses/mit-license.php
|
---|
3 | */
|
---|
4 |
|
---|
5 | "use strict";
|
---|
6 |
|
---|
7 | const RuntimeModule = require("../RuntimeModule");
|
---|
8 |
|
---|
9 | class HelperRuntimeModule extends RuntimeModule {
|
---|
10 | /**
|
---|
11 | * @param {string} name a readable name
|
---|
12 | */
|
---|
13 | constructor(name) {
|
---|
14 | super(name);
|
---|
15 | }
|
---|
16 | }
|
---|
17 |
|
---|
18 | module.exports = HelperRuntimeModule;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.