iptv/scripts/core/logParser.ts
2023-09-22 06:22:47 +03:00

14 lines
276 B
TypeScript

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