mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-16 13:32:37 +01:00
4 lines
105 B
JavaScript
4 lines
105 B
JavaScript
|
|
export function roundValueForPresentation(value) {
|
|
return value.toPrecision(4).replace(/\.0$/, '');
|
|
}
|