iana-tz-json-generator-and-importer
Version:
Quickly get timezone names and metadata from the IANA into your application in the format you want.
13 lines • 533 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.isValidZoneTabRow = void 0;
function isValidZoneTabRow(row) {
// A valid row looks like:
// [ 'AU', '-3157+14127', 'Australia/Broken_Hill', 'New South Wales (Yancowinna)' ],
// OR
// ['GB,GG,IM,JE', '+513030-0000731', 'Europe/London']
const countryCodeValid = /^[A-Z]{2}$/.test(row[0].split(',')[0]);
return countryCodeValid;
}
exports.isValidZoneTabRow = isValidZoneTabRow;
//# sourceMappingURL=is-valid-zone-tab-row.js.map