0
1
GGGiovanny Gongora
Normalizes line endings in a string.
0 Comments
const normalizeLineEndings = (str: string, normalized: string = '\r\n') => str.replace(/\r?\n/g, normalized);