UNPKG

@hashgraph/solo

Version:

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

9 lines (7 loc) 242 B
// SPDX-License-Identifier: Apache-2.0 export function isValidEnum<E extends Record<string, string | number>>( value: unknown, enumeration: E, ): value is E[keyof E] { return Object.values(enumeration).includes(value as E[keyof E]); }