UNPKG

@devlander/utils

Version:

Comprehensive JavaScript and TypeScript utilities for seamless development. Includes object manipulation, data validation, and more.

7 lines (6 loc) 268 B
/** * Removes all new line characters from a given string. * @param inputString - The input string to remove new lines from. * @returns The input string with all new lines removed. */ export declare const removeNewLinesFromString: (inputString: string) => string;