UNPKG

twspace-crawler

Version:
15 lines 440 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.M3u8Util = void 0; const m3u8_parser_1 = require("m3u8-parser"); class M3u8Util { static parse(str) { const parser = new m3u8_parser_1.Parser(); parser.push(str); parser.end(); const { manifest } = parser; return manifest; } } exports.M3u8Util = M3u8Util; //# sourceMappingURL=m3u8.util.js.map