Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/iptv-org/iptv
/ parse
Method
parse
scripts/core/logParser.ts:8–13 ·
view source on GitHub ↗
(content: string)
Source
from the content-addressed store, hash-verified
6
7
export
class
LogParser {
8
parse(content: string): LogItem[] {
9
if
(!content)
return
[]
10
const
lines = content.split(
'\n'
)
11
12
return
lines.map(line => (line ? JSON.parse(line) : null)).filter(l => l)
13
}
14
}
Callers
9
create
Method · 0.95
create
Method · 0.95
create
Method · 0.95
create
Method · 0.95
test.ts
File · 0.45
edit.ts
File · 0.45
validate.ts
File · 0.45
format.ts
File · 0.45
content
Function · 0.45
Calls
no outgoing calls
Tested by
1
content
Function · 0.36