CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
index.d.ts11 linesDownload Raw Back to trim-lines
1/**2 * Remove initial and final spaces and tabs at the line breaks in `value`.3 * Does not trim initial and final spaces and tabs of the value itself.4 *5 * @param {string} value6 *   Value to trim.7 * @returns {string}8 *   Trimmed value.9 */10export function trimLines(value: string): string11