(thing: unknown)
| 62 | thing == null; |
| 63 | |
| 64 | export const isUndefined = (thing: unknown): thing is undefined => |
| 65 | thing === undefined; |
| 66 | |
| 67 | export const dateNew = (value?: any): Date => |
| 68 | isUndefined(value) ? new date() : new date(value); |
no outgoing calls
no test coverage detected
searching dependent graphs…