Sha256: 8d2c5b2d2b69e7f8f18c32fe255e83413a0013cad2216ecd34d07fe566ea3b17

Contents?: true

Size: 969 Bytes

Versions: 33

Compression:

Stored size: 969 Bytes

Contents

"use strict";
var __assign = (this && this.__assign) || function () {
    __assign = Object.assign || function(t) {
        for (var s, i = 1, n = arguments.length; i < n; i++) {
            s = arguments[i];
            for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
                t[p] = s[p];
        }
        return t;
    };
    return __assign.apply(this, arguments);
};
Object.defineProperty(exports, "__esModule", { value: true });
var defaultOptions = {
    delayFirstAttempt: false,
    jitter: "none",
    maxDelay: Infinity,
    numOfAttempts: 10,
    retry: function () { return true; },
    startingDelay: 100,
    timeMultiple: 2
};
function getSanitizedOptions(options) {
    var sanitized = __assign(__assign({}, defaultOptions), options);
    if (sanitized.numOfAttempts < 1) {
        sanitized.numOfAttempts = 1;
    }
    return sanitized;
}
exports.getSanitizedOptions = getSanitizedOptions;
//# sourceMappingURL=options.js.map

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
immosquare-cleaner-0.1.60 node_modules/exponential-backoff/dist/options.js
immosquare-cleaner-0.1.59 node_modules/exponential-backoff/dist/options.js
immosquare-cleaner-0.1.58 node_modules/exponential-backoff/dist/options.js
immosquare-cleaner-0.1.57 node_modules/exponential-backoff/dist/options.js
immosquare-cleaner-0.1.56 node_modules/exponential-backoff/dist/options.js
immosquare-cleaner-0.1.55 node_modules/exponential-backoff/dist/options.js
immosquare-cleaner-0.1.54 node_modules/exponential-backoff/dist/options.js
immosquare-cleaner-0.1.53 node_modules/exponential-backoff/dist/options.js
immosquare-cleaner-0.1.52 node_modules/exponential-backoff/dist/options.js
immosquare-cleaner-0.1.51 node_modules/exponential-backoff/dist/options.js
immosquare-cleaner-0.1.50 node_modules/exponential-backoff/dist/options.js
immosquare-cleaner-0.1.49 node_modules/exponential-backoff/dist/options.js
immosquare-cleaner-0.1.48 node_modules/exponential-backoff/dist/options.js
immosquare-cleaner-0.1.47 node_modules/exponential-backoff/dist/options.js
immosquare-cleaner-0.1.46 node_modules/exponential-backoff/dist/options.js
immosquare-cleaner-0.1.45 node_modules/exponential-backoff/dist/options.js
immosquare-cleaner-0.1.44 node_modules/exponential-backoff/dist/options.js
immosquare-cleaner-0.1.43 node_modules/exponential-backoff/dist/options.js
immosquare-cleaner-0.1.42 node_modules/exponential-backoff/dist/options.js
immosquare-cleaner-0.1.41 node_modules/exponential-backoff/dist/options.js