UNPKG

@hashgraph/solo

Version:

An opinionated CLI tool to deploy and manage private Hedera Networks.

26 lines 772 B
// SPDX-License-Identifier: Apache-2.0 /** * @include DNS_1123_LABEL * @param value - the string to check * @returns true if the string is a valid DNS-1123 label */ export function isDns1123Label(value) { return /^[a-z0-9]([-a-z0-9]{0,61}[a-z0-9])?$/.test(value); } /** * @include DNS_1123_OBJECT * @param value - the string to check * @returns true if the string is a valid DNS-1123 object */ export function isDns1123Object(value) { return /^[a-z0-9]([-a-z0-9]{0,243}[a-z0-9])?$/.test(value); } /** * @include DNS_1123_RESOURCE * @param value - the string to check * @returns true if the string is a valid DNS-1123 resource */ export function isDns1123Resource(value) { return isDns1123Object(value); } //# sourceMappingURL=kube-validation.js.map