UNPKG

@cn-ui/core

Version:

The @cn-ui/core is a collection of UI components and utilities for building modern web applications with SolidJS.

5 lines (4 loc) 162 B
export const getLabelFromOptions = <T extends { toString(): string }>(options: { label?: T; value: T; }) => (options?.label ?? options.value).toString();