improved toCSV
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

This commit is contained in:
2024-11-09 13:49:04 -05:00
parent ce2f32dd45
commit 2f59a9d02e
4 changed files with 14 additions and 20 deletions

View File

@ -6,9 +6,9 @@
</head>
<body>
<script type="module">
import {PathEvent} from './dist/index.mjs';
import {toCsv} from './dist/index.mjs';
console.log(PathEvent.has(['data/Inventory:n', 'logs:c'], `logs/client:n`));
console.log(toCsv([{test:123, test2: {test: [1, 2, 3, 4], test3: true, test4: 'okay'}}]));
</script>
</body>
</html>