UNPKG

react-tesna-utils

Version:

A versatile utility library featuring optimized functions for data manipulation, clipboard handling, text truncation, comparison, validation, and more. Designed for modern JavaScript and TypeScript projects with efficient and reusable solutions.

9 lines (8 loc) 267 B
type TTruncatedMiddleText = { text: string | number; startLength?: number; endLength?: number; separator?: string; }; export declare const truncatedMiddleText: ({ text, startLength, endLength, separator, }: TTruncatedMiddleText) => string; export {};