Skip to content

httpDate

const httpDate: RegExp = /^(Mon|Tue|Wed|Thu|Fri|Sat|Sun), (\d{2}) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (\d{4}) (\d{2}):(\d{2}):(\d{2}) GMT$/;
import { httpDate } from "@northguild/gmt/regex/http-date";

RFC 7231 §7.1.1.1 IMF-fixdate — the only form GMT’s formatHttp emits, and

httpDate.test("60") // false
httpDate.test("202") // false

regex/http-date.ts