mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-23 01:39:21 +01:00
4 lines
130 B
TypeScript
4 lines
130 B
TypeScript
|
|
export function formatFixed(number: number, decimals = 3): string {
|
||
|
|
return parseFloat(number.toFixed(decimals)).toString(10);
|
||
|
|
}
|