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