const pad = (number: string | number, length = 2) : string => String(number).padStart(length, '0');

export default pad;