Remove reInsertVariable cleanup in build/pre-compile.js.

Former-commit-id: 1fa75107e8c43362b57021292e26397145e62e39
This commit is contained in:
John-David Dalton
2013-02-14 09:03:47 -08:00
parent 56b6d50479
commit 4101b8e937

View File

@@ -247,7 +247,7 @@
});
// remove whitespace from `_.template` related regexes
source = source.replace(/(?:reEmptyString\w+|reInsertVariable) *=.+/g, function(match) {
source = source.replace(/reEmptyString\w+ *=.+/g, function(match) {
return match.replace(/ |\\n/g, '');
});