normalize.js (117B)
1 export function normalizeOrgContent(content) { 2 if (!content) return ''; 3 return content.replace(/\r\n/g, '\n'); 4 }