(args: IArguments)
| 155 | export const isDateTime = (u: unknown): u is DateTime.DateTime => Predicate.hasProperty(u, TypeId) |
| 156 | |
| 157 | const isDateTimeArgs = (args: IArguments) => isDateTime(args[0]) |
| 158 | |
| 159 | /** @internal */ |
| 160 | export const isTimeZone = (u: unknown): u is DateTime.TimeZone => Predicate.hasProperty(u, TimeZoneTypeId) |
nothing calls this directly
no test coverage detected