mirror of
https://github.com/mivodev/mivodev.github.io.git
synced 2026-01-26 13:32:07 +07:00
11 lines
293 B
TypeScript
11 lines
293 B
TypeScript
/**
|
|
* Remove initial and final spaces and tabs at the line breaks in `value`.
|
|
* Does not trim initial and final spaces and tabs of the value itself.
|
|
*
|
|
* @param {string} value
|
|
* Value to trim.
|
|
* @returns {string}
|
|
* Trimmed value.
|
|
*/
|
|
export function trimLines(value: string): string
|