WIP Исправил ошибку срабатывания интервала
This commit is contained in:
6
src/shared/utils/methodsObjects.js
Normal file
6
src/shared/utils/methodsObjects.js
Normal file
@@ -0,0 +1,6 @@
|
||||
export function roundedNumber(val, digits, rounded = "floor") {
|
||||
let fraction = 10 * digits;
|
||||
return fraction
|
||||
? Math[rounded](val * fraction) / fraction
|
||||
: Math[rounded](val);
|
||||
}
|
||||
Reference in New Issue
Block a user