source: node_modules/es-toolkit/dist/promise/timeout.mjs@ ba17441

Last change on this file since ba17441 was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 199 bytes
Line 
1import { delay } from './delay.mjs';
2import { TimeoutError } from '../error/TimeoutError.mjs';
3
4async function timeout(ms) {
5 await delay(ms);
6 throw new TimeoutError();
7}
8
9export { timeout };
Note: See TracBrowser for help on using the repository browser.