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