export function stripBOM(str) { if (!str) return str; if (str.charCodeAt(0) === 0xFEFF) { return str.slice(1); } return str; }