UNPKG

@valkyriestudios/validator

Version:

A lightweight configurable javascript validator

7 lines (6 loc) 167 B
import { TIMEZONES } from '../types'; const SET = new Set(TIMEZONES); function vTimeZone(val) { return SET.has(val); } export { vTimeZone, vTimeZone as default };