(val: any)
| 10 | export const isFunction = (value: any): value is Function => typeof value === 'function'; |
| 11 | |
| 12 | export const isObject = (val: any) => val !== null && !Array.isArray(val) && typeof val === 'object'; |
| 13 | |
| 14 | export const printRow = (str: string, { |
| 15 | color = 'green', |