utils/index.html
ztimson 2f59a9d02e
All checks were successful
Build / Build NPM Project (push) Successful in 41s
Build / Tag Version (push) Successful in 7s
Build / Publish Documentation (push) Successful in 1m41s
improved toCSV
2024-11-09 13:49:04 -05:00

15 lines
281 B
HTML

<!Doctype html>
<html>
<head>
<title>@ztimson/utils sandbox</title>
</head>
<body>
<script type="module">
import {toCsv} from './dist/index.mjs';
console.log(toCsv([{test:123, test2: {test: [1, 2, 3, 4], test3: true, test4: 'okay'}}]));
</script>
</body>
</html>