console-hook
Version:
console hooks for override and capture
36 lines (32 loc) • 683 B
HTML
<html>
<head>
<title>Console Hook</title>
<style>
html, body {
margin: 0px;
font-family: Helvetica;
height: 100%;
width: 100%;
}
body {
display: flex;
align-items: center;
justify-content: center;
}
div {
text-align: center;
padding-bottom: 20px;
}
h1 {margin: 0px; color: #123;}
p {margin: 0px; color: #345;}
</style>
</head>
<body>
<div>
<h1>Console Hook</h1>
<p>Test out <b>console-hook</b> in the browser as <code>ConsoleHook</code>.</p>
</div>
<script src='./index.js'></script>
</body>
</html>