mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-12 01:50:04 -04:00
13 lines
276 B
TypeScript
13 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)
|
|
}
|
|
}
|