AK-21/Graphite-Industrial-Intelligence
0
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 