@webdeveric/utils
    Preparing search index...

    Variable isISODateStringConst

    isISODateString: TypePredicateFn<ISODateString> = ...

    This checks to see if the input matches the format that toISOString() returns, which is a simplified format based on ISO 8601.

    isISODateString('2024-01-01T00:00:00.000Z'); // true
    isISODateString('2024-01-01'); // false