-
-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathtest.html
More file actions
77 lines (75 loc) · 2.49 KB
/
test.html
File metadata and controls
77 lines (75 loc) · 2.49 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Testing lib0</title>
<script type="importmap">
{
"imports": {
"lib0/package.json": "./package.json",
"lib0/array": "./src/array.js",
"lib0/binary": "./src/binary.js",
"lib0/broadcastchannel": "./src/broadcastchannel.js",
"lib0/buffer": "./src/buffer.js",
"lib0/cache": "./src/cache.js",
"lib0/component": "./src/component.js",
"lib0/conditions": "./src/conditions.js",
"lib0/crypto/jwt": "./src/crypto/jwt.js",
"lib0/crypto/aes-gcm": "./src/crypto/aes-gcm.js",
"lib0/delta": "./src/delta/delta.js",
"lib0/delta/transformer": "./src/delta/transformer.js",
"lib0/crypto/ecdsa": "./src/crypto/ecdsa.js",
"lib0/crypto/rsa-oaep": "./src/crypto/rsa-oaep.js",
"lib0/hash/rabin": "./src/hash/rabin.js",
"lib0/hash/sha256": "./src/hash/sha256.js",
"lib0/decoding": "./src/decoding.js",
"lib0/diff/patience": "./src/diff/patience.js",
"lib0/diff": "./src/diff.js",
"lib0/dom": "./src/dom.js",
"lib0/encoding": "./src/encoding.js",
"lib0/environment": "./src/environment.js",
"lib0/error": "./src/error.js",
"lib0/eventloop": "./src/eventloop.js",
"lib0/function": "./src/function.js",
"lib0/indexeddb": "./src/indexeddb.js",
"lib0/iterator": "./src/iterator.js",
"lib0/json": "./src/json.js",
"lib0/list": "./src/list.js",
"lib0/logging": "./src/logging.js",
"lib0/map": "./src/map.js",
"lib0/math": "./src/math.js",
"lib0/metric": "./src/metric.js",
"lib0/mutex": "./src/mutex.js",
"lib0/number": "./src/number.js",
"lib0/object": "./src/object.js",
"lib0/observable": "./src/observable.js",
"lib0/pair": "./src/pair.js",
"lib0/prng": "./src/prng.js",
"lib0/promise": "./src/promise.js",
"lib0/queue": "./src/queue.js",
"lib0/random": "./src/random.js",
"lib0/set": "./src/set.js",
"lib0/sort": "./src/sort.js",
"lib0/statistics": "./src/statistics.js",
"lib0/storage": "./src/storage.js",
"lib0/string": "./src/string.js",
"lib0/symbol": "./src/symbol.js",
"lib0/traits": "./src/trait/traits.js",
"lib0/trait/fingerprint": "./src/trait/fingerprint.js",
"lib0/testing": "./src/testing.js",
"lib0/time": "./src/time.js",
"lib0/tree": "./src/tree.js",
"lib0/url": "./src/url.js",
"lib0/websocket": "./src/websocket.js",
"lib0/webcrypto": "./src/webcrypto.js",
"lib0/ts": "./src/ts.js",
"lib0/performance": "./src/performance.js",
"lib0/schema": "./src/schema.js"
},
"scopes": {}
}
</script>
</head>
<body>
<script type="module" src="src/test.js"></script>
</body>
</html>