stripIndent(" foo\n\t\tbar")
Results in "foo\nbar"
stripIndent has apparently determined that the ident is "two whitespaces", and will consume such from the beginning of every line of the file - regardless of what kind of whitespace it is.
Almost certainly a very minor corner case, but it still seems incorrect?