Streaming CSV encoding for Cloudflare Workers and service workers
npm install @cfworker/csv




Streaming CSV encoding for Cloudflare Workers and service workers.
``js
import { encode } from '@cfworker/csv';
const data = [{ hello: 'world' }];
const stream = encode(data); // hello\nworld
``