-
Notifications
You must be signed in to change notification settings - Fork 11
/
index.js
46 lines (46 loc) · 1.52 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
module.exports = {
// Types
'Array': require('./array'),
'Dict': require('./dict'),
'Set': require('./set'),
'Struct': require('./struct'),
'Value': require('./value'),
'MappedArray': require('./mapped-array'),
'MappedDict': require('./mapped-dict'),
'TypedCollection': require('./typed-collection'),
// ProxyTypes
'ProxyCollection': require('./proxy-collection'),
'ProxyDict': require('./proxy-dict'),
'Proxy': require('./proxy'),
// Transforms
'computed': require('./computed'),
'concat': require('./concat'),
'dictToCollection': require('./dict-to-collection'),
'idleProxy': require('./idle-proxy'),
'keys': require('./keys'),
'lookup': require('./lookup'),
'map': require('./map'),
'merge': require('./merge'),
'reverse': require('./reverse'),
'throttle': require('./throttle'),
'when': require('./when'),
// Sinks
'h': require('./html-element'),
'HtmlElement': require('./html-element'),
'svg': require('./svg-element'),
'SvgElement': require('./svg-element'),
'watchAll': require('./watch-all'),
'watch': require('./watch'),
'watchThrottle': require('./watch-throttle'),
// Helpers
'forEach': require('./for-each'),
'forEachPair': require('./for-each-pair'),
'isObservable': require('./is-observable'),
'onceIdle': require('./once-idle'),
'onceTrue': require('./once-true'),
'resolve': require('./resolve'),
'channel': require('./channel'),
'watchEvent': require('./watch-event'),
'watchAnimationFrame': require('./watch-animation-frame'),
'send': require('./send')
}