@corefunc/corefunc
    Preparing search index...

    Function regexIsDateIso

    • Parameters

      • stringWithDate: string

        String to check for ISO date.

      Returns boolean

      regexIsDateIso

      Checks if a string is an ISO-compliant date.

      regexIsDateIso("2134-12-30T12:34:56.789Z") ➜ true
      
      regexIsDateIso("2134-12-30T12:34:56Z") ➜ true
      
      regexIsDateIso("2134-12-30T12:34Z") ➜ true
      

      0.3.22