iptv/scripts/core/logParser.ts
2023-09-15 18:40:35 +03:00

14 lines
272 B
TypeScript

export type LogItem = {
filepath: string
count: number
}
export class LogParser {
parse(content: string): any[] {
if (!content) return []
const lines = content.split('\n')
return lines.map(line => (line ? JSON.parse(line) : null)).filter(l => l)
}
}