UNPKG

youtube-likes-downloader

Version:
6 lines (4 loc) 192 B
import type { VideoInfo } from '../types'; export function formatTitle({ id, title, channel }: Pick<VideoInfo, 'id' | 'title' | 'channel'>): string { return `${title} [${channel}].${id}`; }