Remove common leading indentation from every line in input and trim the result.
input
trimIndentation(' foo\n bar\n'); // 'foo\nbar' Copy
trimIndentation(' foo\n bar\n'); // 'foo\nbar'
Remove common leading indentation from every line in
inputand trim the result.