Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
21 lines
486 B
Plaintext
21 lines
486 B
Plaintext
export const createUploadTimer = (timeout = 0, callback = ()=>{})=>{
|
|
let timer = null;
|
|
const clear = ()=>{
|
|
clearTimeout(timer);
|
|
};
|
|
const set = ()=>{
|
|
// Do not start a timer if zero timeout or it hasn't been set.
|
|
if (!timeout) {
|
|
return false;
|
|
}
|
|
clear();
|
|
timer = setTimeout(callback, timeout);
|
|
return true;
|
|
};
|
|
return {
|
|
clear,
|
|
set
|
|
};
|
|
};
|
|
|
|
//# sourceMappingURL=uploadTimer.js.map |