UNPKG

@grandlinex/react-components

Version:
13 lines (12 loc) 252 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.pad = pad; function pad(num) { if (typeof num === 'string') { return num; } if (num < 10) { return `0${num}`; } return `${num}`; }