index.d.ts 293 B

12345678910
  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} value
  6. * Value to trim.
  7. * @returns {string}
  8. * Trimmed value.
  9. */
  10. export function trimLines(value: string): string