UNPKG

@valkyriestudios/validator

Version:

A lightweight configurable javascript validator

10 lines (9 loc) 292 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.vCountryAlpha3 = vCountryAlpha3; exports.default = vCountryAlpha3; const types_1 = require("../types"); const SET = new Set(types_1.COUNTRY_ALPHA3); function vCountryAlpha3(val) { return SET.has(val); }