063 cache bug fix
This commit is contained in:
@@ -164,6 +164,13 @@ function roundSafe(a, precision) {
|
||||
}
|
||||
request.roundSafe = roundSafe;
|
||||
|
||||
function ceilingSafe(a) {
|
||||
return (isNumeric(a)) ? ceiling(a) : a;
|
||||
}
|
||||
request.ceilingSafe = ceilingSafe;
|
||||
|
||||
|
||||
|
||||
function timeUnitLabel(n, value=0, locale="ru") {
|
||||
var labels = ["сек.","мин.","ч.","д.","мес."];
|
||||
if (n LE 5 AND n GE 1) {return labels[n];}
|
||||
|
||||
Reference in New Issue
Block a user