utils/index.html

15 lines
281 B
HTML
Raw Normal View History

2024-10-17 10:24:18 -04:00
<!Doctype html>
<html>
<head>
<title>@ztimson/utils sandbox</title>
</head>
<body>
<script type="module">
2024-11-09 13:49:04 -05:00
import {toCsv} from './dist/index.mjs';
2024-10-17 10:24:18 -04:00
2024-11-09 13:49:04 -05:00
console.log(toCsv([{test:123, test2: {test: [1, 2, 3, 4], test3: true, test4: 'okay'}}]));
2024-10-17 10:24:18 -04:00
</script>
</body>
</html>