source: node_modules/es-toolkit/dist/promise/index.js@ a762898

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

Added visualizations

  • Property mode set to 100644
File size: 482 bytes
Line 
1'use strict';
2
3Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
4
5const delay = require('./delay.js');
6const mutex = require('./mutex.js');
7const semaphore = require('./semaphore.js');
8const timeout = require('./timeout.js');
9const withTimeout = require('./withTimeout.js');
10
11
12
13exports.delay = delay.delay;
14exports.Mutex = mutex.Mutex;
15exports.Semaphore = semaphore.Semaphore;
16exports.timeout = timeout.timeout;
17exports.withTimeout = withTimeout.withTimeout;
Note: See TracBrowser for help on using the repository browser.