UNPKG

@devlander/utils

Version:

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

7 lines (6 loc) 247 B
/** * Removes all spaces from a given string. * @param inputString - The string from which to remove spaces. * @returns The input string with all spaces removed. */ export declare const removeSpacesFromString: (inputString: string) => string;