* Check if value is a string. * @param value The value to check. * @returns
(value: T)
| 46 | * @returns |
| 47 | */ |
| 48 | isString<T>(value: T): boolean { |
| 49 | return typeof value === "string"; |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * Checks if value is a number. |
no outgoing calls
no test coverage detected