unmock-core
Version:
[][npmjs] [](https://circleci.com/gh/unmock/unmock-js) [](h
18 lines • 380 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class BooleanSetting {
constructor(value = false) {
this.value = value;
}
on() {
this.value = true;
}
off() {
this.value = false;
}
get() {
return this.value;
}
}
exports.BooleanSetting = BooleanSetting;
//# sourceMappingURL=boolean.js.map