UNPKG

@axinom/mosaic-ui

Version:

UI components for building Axinom Mosaic applications

15 lines (13 loc) 304 B
export const getTooltipText = (value: unknown): string | undefined => { const textValue = String(value); if ( textValue === '[object Object]' || textValue === 'undefined' || textValue === 'null' || textValue === '' ) { return undefined; } else { return textValue; } };