"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.validateHours = validateHours; /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ function validateHours(time) { if (/^([0-9]|0[0-9]|1[0-9]|2[0-3]):[0-5][0-9]$/.test(time)) { return; } return 'string is not a valid time in HH:mm format ' + time; }