auth-api/tests/node_modules/tape/example/static/index.html

22 lines
354 B
HTML
Raw Normal View History

2021-06-23 22:30:45 +02:00
<!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>