mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-01-23 18:00:00 +00:00
6 lines
110 B
JavaScript
6 lines
110 B
JavaScript
|
function normalizeNewLines(str) {
|
||
|
return str.replace(/\r\n/g, "\n");
|
||
|
}
|
||
|
|
||
|
module.exports = normalizeNewLines;
|