MCPcopy Index your code
hub / github.com/JavaCS3/xterm-player / parse

Method parse

src/CastParser.ts:24–30  ·  view source on GitHub ↗
(text: string)

Source from the content-addressed store, hash-verified

22
23export class AsciinemaCastParser implements ICastParser {
24 public parse(text: string): ICastObject {
25 try {
26 return new AsciinemaCastV1Parser().parse(text)
27 } catch (err) {
28 return new AsciinemaCastV2Parser().parse(text)
29 }
30 }
31}
32
33/**

Callers

nothing calls this directly

Calls 1

parseMethod · 0.65

Tested by

no test coverage detected