knowledgebase_law/node_modules/trim-lines/index.d.ts

11 lines
293 B
TypeScript
Raw Normal View History

2025-04-11 23:47:09 +08:00
/**
* 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