Sindbad~EG File Manager

Current Path : /home/infinitibizsol/.trash/node_modules.9/@smithy/property-provider/dist-es/
Upload File :
Current File : /home/infinitibizsol/.trash/node_modules.9/@smithy/property-provider/dist-es/chain.js

import { ProviderError } from "./ProviderError";
export const chain = (...providers) => async () => {
    if (providers.length === 0) {
        throw new ProviderError("No providers in chain");
    }
    let lastProviderError;
    for (const provider of providers) {
        try {
            const credentials = await provider();
            return credentials;
        }
        catch (err) {
            lastProviderError = err;
            if (err?.tryNextLink) {
                continue;
            }
            throw err;
        }
    }
    throw lastProviderError;
};

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists