81 vm_ls fix

This commit is contained in:
2026-09-01 15:28:17 +03:00
parent a527dd66e7
commit 3db978003f
5 changed files with 425 additions and 20 deletions
+1 -1
View File
@@ -159,7 +159,7 @@ function skuCode(area_code="", abstract_service_code="") {
}
request.skuCode = skuCode;
*/
function roundSafe(a, precision) {
function roundSafe(a, precision=0) {
return (isNumeric(a) AND isNumeric(precision)) ? round(a,precision) : a;
}
request.roundSafe = roundSafe;