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

Class AsciinemaCastParser

src/CastParser.ts:23–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21}
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/**
34 * Asciinema cast v1 parser

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected