svelte backend calls: stop matching on ','
This commit is contained in:
parent
4d2dda3615
commit
2da637f51d
@ -234,7 +234,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++;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user