UNPKG

@progress/kendo-date-math

Version:

Kendo UI typescript package exporting functions for Date manipulations

9 lines (8 loc) 219 B
/** * @hidden */ export var padNumber = function (num, len) { if (len === void 0) { len = 2; } var sign = num < 0 ? '-' : ''; return sign + new Array(len).concat([Math.abs(num)]).join('0').slice(-len); };