work.suroh.tk/node_modules/@11ty/eleventy/test/Util/normalizeNewLines.js

6 lines
110 B
JavaScript
Raw Normal View History

2019-12-02 12:22:45 +00:00
function normalizeNewLines(str) {
return str.replace(/\r\n/g, "\n");
}
module.exports = normalizeNewLines;