UNPKG

@aws-amplify/auth

Version:
15 lines (13 loc) 462 B
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 const inflightPromises = []; const addInflightPromise = (resolver) => { inflightPromises.push(resolver); }; const resolveAndClearInflightPromises = () => { while (inflightPromises.length) { inflightPromises.pop()?.(); } }; export { addInflightPromise, resolveAndClearInflightPromises }; //# sourceMappingURL=inflightPromise.mjs.map