const totalCRCount = this._cr + this._crlf;
if (totalEOLCount === 0) {
return (defaultEOL === DefaultEndOfLine.LF ? '\n' : '\r\n');
}
if (totalCRCount > totalEOLCount / 2) {
// More than half of the file contains \r\n ending lines