Svelte view engine: backend calls: don't match dots and quotes

This commit is contained in:
Alice Gaudon 2021-05-12 13:57:53 +02:00
parent c60bd442e8
commit 1167e99c30
1 changed files with 1 additions and 1 deletions

View File

@ -237,7 +237,7 @@ export default class SvelteViewEngine extends ViewEngine {
break;
}
}
if ([' ', '\n', '<'].indexOf(output[endIndex]) >= 0 && struct === 0) break;
if ([' ', '\n', '<', '.', '\'', '"'].indexOf(output[endIndex]) >= 0 && struct === 0) break;
endIndex++;
}