ai-tube-clap-exporter / src /core /utils /formatProgress.mts
jbilcke-hf's picture
jbilcke-hf HF staff
initial commit 🎬
2cae2a9
raw
history blame
97 Bytes
export function formatProgress(a: number, b: number) {
return `${Math.round((a / b) * 100)}%`
}