Skip to content

month

const month: RegExp = /^(0[1-9]|1[0-2])$/;
import { month } from "@northguild/gmt/regex/date";
month.test("01") // true
month.test("12") // true
month.test("60") // false
month.test("202") // false

regex/date.ts