UNPKG

@progress/kendo-date-math

Version:

Kendo UI typescript package exporting functions for Date manipulations

8 lines (7 loc) 184 B
/** * @hidden */ export const padNumber = (num, len = 2) => { const sign = num < 0 ? '-' : ''; return sign + new Array(len).concat([Math.abs(num)]).join('0').slice(-len); };