Skip to content

Instantly share code, notes, and snippets.

View dellMarcoso's full-sized avatar

Marco Dell'Oso dellMarcoso

View GitHub Profile
@changhuixu
changhuixu / csv-data.service.ts
Last active April 18, 2021 07:01
Export Objects Array as CSV using TypeScript
export class CsvDataService {
static exportToCsv(filename: string, rows: object[]) {
if (!rows || !rows.length) {
return;
}
const separator = ',';
const keys = Object.keys(rows[0]);
const csvContent =
keys.join(separator) +
'\n' +