export function eventsToNDJSON()

in src/shippers/elastic_v3/common/src/events_to_ndjson.ts [15:17]


export function eventsToNDJSON(events: Event[]): string {
  return `${events.map((event) => JSON.stringify(event)).join('\n')}\n`;
}