Skip to content

Commit

Permalink
Don't trim code selection before sending to kernel
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Barron authored and BenRussert committed Jul 31, 2018
1 parent ad6217f commit b419749
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/code-manager.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {

export function normalizeString(code: ?string) {
if (code) {
return code.replace(/\r\n|\r/g, "\n").trim();
return code.replace(/\r\n|\r/g, "\n");
}
return null;
}
Expand Down

0 comments on commit b419749

Please sign in to comment.