(data: string[])
| 99 | } |
| 100 | |
| 101 | override async push(data: string[]): Promise<void> { |
| 102 | const content = stringify([data]); |
| 103 | return this.performWrite(content); |
| 104 | } |
| 105 | } |
| 106 | export function readNdJson(taskPath: string, limit: number | null | undefined=null) : Promise<any[]>{ |
| 107 | const items: any[] = [] |
no test coverage detected