@augment-vir/common
Version:
A collection of augments, helpers types, functions, and classes for any JavaScript environment.
10 lines (9 loc) • 319 B
TypeScript
/**
* Trims all entries in an array.
*
* @category Array
* @category Package : @augment-vir/common
* @returns A new array (does not mutate).
* @package [`@augment-vir/common`](https://www.npmjs.com/package/@augment-vir/common)
*/
export declare function trimArrayStrings(input: ReadonlyArray<string>): string[];