mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-07-29 01:01:34 -07:00
4 lines
115 B
TypeScript
4 lines
115 B
TypeScript
export function toMpvEdlValue(value: string): string {
|
|
return `%${Buffer.byteLength(value, 'utf8')}%${value}`;
|
|
}
|