-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
index.js
82 lines (80 loc) · 1.87 KB
/
index.js
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/**
* Experimental method to import lib0.
*
* Not recommended if the module bundler doesn't support dead code elimination.
*
* @module lib0
*/
import * as array from './array.js'
import * as binary from './binary.js'
import * as broadcastchannel from './broadcastchannel.js'
import * as buffer from './buffer.js'
import * as conditions from './conditions.js'
import * as decoding from './decoding.js'
import * as diff from './diff.js'
import * as dom from './dom.js'
import * as encoding from './encoding.js'
import * as environment from './environment.js'
import * as error from './error.js'
import * as eventloop from './eventloop.js'
// @todo rename file to func
import * as func from './function.js'
import * as indexeddb from './indexeddb.js'
import * as iterator from './iterator.js'
import * as json from './json.js'
import * as logging from 'lib0/logging'
import * as map from './map.js'
import * as math from './math.js'
import * as mutex from './mutex.js'
import * as number from './number.js'
import * as object from './object.js'
import * as pair from './pair.js'
import * as prng from './prng.js'
import * as promise from './promise.js'
// import * as random from './random.js'
import * as set from './set.js'
import * as sort from './sort.js'
import * as statistics from './statistics.js'
import * as string from './string.js'
import * as symbol from './symbol.js'
// import * as testing from './testing.js'
import * as time from './time.js'
import * as tree from './tree.js'
import * as websocket from './websocket.js'
export {
array,
binary,
broadcastchannel,
buffer,
conditions,
decoding,
diff,
dom,
encoding,
environment,
error,
eventloop,
func,
indexeddb,
iterator,
json,
logging,
map,
math,
mutex,
number,
object,
pair,
prng,
promise,
// random,
set,
sort,
statistics,
string,
symbol,
// testing,
time,
tree,
websocket
}