You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
NormalizeLineEndings(Destination) assumes the source is in system form. However, it is possible it was read from a file etc.. and has non-system or mixed endings. Thus, normalize needs to account for that as a possibility and we... normalize the endings to a consistent form.
Describe the solution you'd like
Normalizing line endings should be able to handle mixed or otherwise unknown forms as reading input from external sources can't always guarantee consistency.
Describe alternatives you've considered
Deal with mixed endings manually distinctly in all cases... (lather, rinse, repeat)
Additional context
Copy, paste, tweak is a bad design...