(value: unknown)
| 578 | } |
| 579 | |
| 580 | isFunction(value: unknown): value is CallableFunction { |
| 581 | return typeof value === "function"; |
| 582 | } |
| 583 | |
| 584 | capitalizeFirstLetter(str: string): string { |
| 585 | return str.length > 0 ? str.charAt(0).toUpperCase() + str.slice(1) : str; |