ai-tube-clap-exporter / src /core /utils /formatProgress.ts
jbilcke-hf's picture
jbilcke-hf HF staff
let's try dev mode
3165afb
raw
history blame contribute delete
97 Bytes
export function formatProgress(a: number, b: number) {
return `${Math.round((a / b) * 100)}%`
}