Checks if the input is a valid UTC ISO string and type guards the input.
import {isValidIsoString} from 'date-vir';isValidIsoString('no'); // `false`isValidIsoString('2024-05-01T20:18:17.123Z'); // `true` Copy
import {isValidIsoString} from 'date-vir';isValidIsoString('no'); // `false`isValidIsoString('2024-05-01T20:18:17.123Z'); // `true`
Checks if the input is a valid UTC ISO string and type guards the input.