MCPcopy Create free account
hub / github.com/fbeline/design-patterns-JS / constructor

Method constructor

src/behavioral/command/command_es6.js:14–16  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

12class Turbine {
13
14 constructor() {
15 this.state = false;
16 }
17
18 on() {
19 this.state = true;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected