private _stop()

in lib/main.ts [89:101]


  private _stop() {
    if (!this.enabled) {
      return;
    }

    this._gcProfiler.stop();
    this._loopProfiler.stop();

    clearTimeout(this._handle);
    this._handle = null;

    this.enabled = false;
  }