* Checks if a value is undefined * @param value The value to check. * @returns
(value: T)
| 82 | * @returns |
| 83 | */ |
| 84 | isUndefined<T>(value: T): boolean { |
| 85 | return typeof value === "undefined"; |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * Checks if a value is empty. Empty means it's either null, undefined or NaN. |
no outgoing calls
no test coverage detected