packages/hmr-plugin/src/internal/hmr-options-builder.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { NgxsHmrOptions } from '../symbols';

export class HmrOptionBuilder {
  public readonly deferTime: number;
  public readonly autoClearLogs: boolean;

  constructor({ deferTime, autoClearLogs }: NgxsHmrOptions) {
    this.deferTime = deferTime || 100;
    this.autoClearLogs = autoClearLogs === undefined ? true : autoClearLogs;
  }

  public clearLogs(): void {
    if (this.autoClearLogs) {
      console.clear();
    }
  }
}