File: index.html

package info (click to toggle)
node-deflate-js 0.2.3-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 248 kB
  • sloc: javascript: 1,817; python: 166; makefile: 5
file content (17 lines) | stat: -rw-r--r-- 576 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Test</title>
<script src='./pakmanaged.js'></script>
</head>
<body>
<h1>DEFLATE Test Page</h1>
<p>Enter text into the first text box to encode it, or enter base64 encoded deflate-encoded text into the second to decode</p>
<dl>
<dt>Inflated + Base64-Decoded (Original Text):</dt>
<dd><textarea id="inflated" cols="64" rows="16"></textarea></dd>
<dt>Deflated + Base64-Encoded (Compressed Output):</dt>
<dd><textarea id="deflated" cols="64" rows="16"></textarea></dd>
</dl>
</body>
</html>