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