15 lines
		
	
	
		
			281 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			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>
 |