-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (21 loc) · 793 Bytes
/
index.html
File metadata and controls
21 lines (21 loc) · 793 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<html>
<head>
<title>Saslprep</title>
<script src="deploy/packages/saslprep/build.js.dart.js" type="application/javascript"></script>
</head>
<body>
<script type="application/javascript">
setTimeout(_ => {
if (window.saslprep) {
document.getElementById("out").innerText = "saslprep('I\u00ADX') -> " + window.saslprep('I\u00ADX') + "\n" +
"saslprep('a\u00A0b') -> " + window.saslprep('a\u00A0b') + "\n" +
"saslprep('\u00AA') -> " + window.saslprep('\u00AA') + "\n";
} else {
document.getElementById("out").innerText = "Please run 'dart run build_runner build -o lib:deploy' first!"
}
},100);
</script>
<pre id="out"></pre>
</body>
</html>