function padding(num, length) { if(String(num).length >= length) { return num; } return padding("0" + num, length) }
← Date 调度 →