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

Method constructor

src/behavioral/command/command_es6.js:40–42  ·  view source on GitHub ↗
(turbine)

Source from the content-addressed store, hash-verified

38class OffCommand {
39
40 constructor(turbine) {
41 this.turbine = turbine;
42 }
43
44 execute() {
45 this.turbine.off();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected