(bool: boolean)
| 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 */ |
| 6 | export function debounce<F extends Function>(fn: F, wait: number) { |
no outgoing calls
no test coverage detected