From a0f7481ad5206400b04a1f0f459de00135788350 Mon Sep 17 00:00:00 2001 From: Oj Date: Sat, 11 Dec 2021 22:15:23 +0000 Subject: [PATCH] [Backoff] Add short explaination of class with comment --- src/utils/Backoff.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/Backoff.js b/src/utils/Backoff.js index 91d0ec7..20adc96 100644 --- a/src/utils/Backoff.js +++ b/src/utils/Backoff.js @@ -1,4 +1,4 @@ -module.exports = class Backoff { +module.exports = class Backoff { // Internal library / utility for a class to retry a callback with delays, etc. constructor(min = 500, max = null) { this._timeoutId = null; // Setup internal vars this.fails = 0;