log-mess
Version:
Log messages with tags and configuration
11 lines • 304 B
JavaScript
import { store } from "./persistent.js";
export function disableTags(tags) {
store.config.value.t0.push(...tags);
}
export function enableTags(tags) {
store.config.value.t1.push(...tags);
}
export function disableVariable() {
store.config.value.v0 = true;
}
//# sourceMappingURL=config.js.map