(number: string | number, length = 2)
| 1 | export const pad = (number: string | number, length = 2) => |
| 2 | `000${number}`.slice(length * -1); |
| 3 | export const int = (bool: boolean) => (bool === true ? 1 : 0); |
| 4 | |
| 5 | /* istanbul ignore next */ |
no outgoing calls
no test coverage detected