mirror of
https://github.com/saltbo/zpan.git
synced 2026-08-29 00:01:42 +08:00
5 lines
140 B
TypeScript
5 lines
140 B
TypeScript
export function percent(part: number, total: number): number {
|
|
if (total <= 0) return 0
|
|
return Math.round((part / total) * 1000) / 10
|
|
}
|