-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.ts
52 lines (50 loc) · 975 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import _try from "./try.ts";
import func from "./func.ts";
import wrap from "./wrap.ts";
import mixin from "./mixin.ts";
import throttle from "./throttle.ts";
import debounce from "./debounce.ts";
import queue, { Queue as _Queue } from "./queue.ts";
import lock, { Mutex as _Mutex } from "./lock.ts";
import chan, { Channel as _Channel } from "./chan.ts";
import parallel from "./parallel.ts";
import run from "./run.ts";
import deprecate from "./deprecate.ts";
import pipe from "./pipe.ts";
export * from "./types.ts";
/**
* The entry of jsext major functions.
*/
const jsext = {
_try,
/** @deprecated Use `_try` instead */
try: _try,
func,
wrap,
mixin,
throttle,
debounce,
queue,
lock,
chan,
parallel,
run,
deprecate,
pipe,
};
export {
jsext as default,
_try,
func,
wrap,
mixin,
throttle,
debounce,
queue,
lock,
chan,
parallel,
run,
deprecate,
pipe,
};