File: index.html

package info (click to toggle)
node-tape 5.6.1%2B~cs8.20.19-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,484 kB
  • sloc: javascript: 7,443; makefile: 12; sh: 1
file content (21 lines) | stat: -rw-r--r-- 354 bytes parent folder | download | duplicates (4)
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>
<style>
body {
    font-family: monospace;
    white-space: pre;
}
</style>
</head>
<body>
<script>
if (typeof console === 'undefined') console = {};
console.log = function (msg) {
    var txt = document.createTextNode(msg);
    document.body.appendChild(txt);
};
</script>
<script src="bundle.js"></script>
</body>
</html>