forked from sheetjs/sheetjs
SheetJS
5de62a947f
- add BOM to `stream.to_csv` (fixes #1024 h/t @hr5959) - `utils.format_cell` type (h/t @victorj2307) - duktape niggles - demo cleanup
37 lines
1.0 KiB
HTML
37 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<!-- xlsx.js (C) 2013-present SheetJS http://sheetjs.com -->
|
|
<!-- vim: set ts=2: -->
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<title>SheetJS FuseBox Test</title>
|
|
<style>
|
|
a { text-decoration: none }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<pre>
|
|
<b><a href="http://sheetjs.com">SheetJS FuseBox Demo</a></b>
|
|
|
|
<a href="https://github.com/SheetJS/js-xlsx">Source Code Repo</a>
|
|
<a href="https://github.com/SheetJS/js-xlsx/issues">Issues? Something look weird? Click here and report an issue</a>
|
|
|
|
Original script: <a href="sheetjs.ts">sheetjs.ts</a>
|
|
|
|
<b>Console Output:</b>
|
|
</pre>
|
|
<pre id="console"></pre>
|
|
<b>
|
|
<script>
|
|
if(typeof console !== "undefined") console = {};
|
|
console.__log = console.log || function(){};
|
|
console.log = function(x) {
|
|
console.__log.apply(console, arguments);
|
|
document.getElementById('console').innerText += x + "\n";
|
|
};
|
|
console.error = console.debug = console.info = console.log
|
|
</script>
|
|
<script type="text/javascript" src="/client.js"></script>
|
|
</body>
|
|
</html>
|