Lodash noop

This commit is contained in:
Steve Klebanoff
2018-11-09 15:28:29 -08:00
parent 5c1b1a1203
commit 93054ae52b

View File

@@ -22,7 +22,7 @@ export class Heartbeater {
this._performFunction();
}
this._intervalId = intervalUtils.setAsyncExcludingInterval(this._performFunction, intervalTimeMs, () => {});
this._intervalId = intervalUtils.setAsyncExcludingInterval(this._performFunction, intervalTimeMs, _.noop);
}
public stop(): void {