市场夺宝奇兵
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

14 lines
388 B

export async function delay({seconds, milliseconds} = {}) {
let duration;
if (typeof seconds === 'number') {
duration = seconds * 1000;
} else if (typeof milliseconds === 'number') {
duration = milliseconds;
} else {
throw new TypeError('Expected an object with either `seconds` or `milliseconds`.');
}
return new Promise(resolve => {
setTimeout(resolve, duration);
});
}