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