@synergy-design-system/components
Version:
8 lines (7 loc) • 346 B
TypeScript
/**
* Creates a sanitized string from a given value, replacing the specified delimiter with whitespace.
* @param value The value to be converted
* @param delimiter The delimiter to use
* @returns The value with the delimiter replaced by whitespace
*/
export declare const delimiterToWhiteSpace: (value: string, delimiter: string) => string;