0
0
mirror of https://github.com/sveltejs/svelte.git synced 2024-12-01 17:30:59 +01:00

fix handling of CRs in debugging comments (#1132)

This commit is contained in:
Conduitry 2018-01-25 12:33:47 -05:00
parent c35eb67af2
commit 7fa293ee6b

View File

@ -17,5 +17,5 @@ export default function createDebuggingComment(node: Node, generator: DomGenerat
const start = locate(c);
const loc = `(${start.line + 1}:${start.column})`;
return `${loc} ${source.slice(c, d)}`.replace(/\n/g, ' ');
}
return `${loc} ${source.slice(c, d)}`.replace(/\s/g, ' ');
}