UNPKG

csv-writer

Version:

Convert objects/arrays into a CSV string or write them into a CSV file

7 lines (5 loc) 160 B
export const isObject = (value: any) => Object.prototype.toString.call(value) === '[object Object]'; export interface ObjectMap<T> { [k: string]: T; }