[ci] format

This commit is contained in:
matthewp 2022-11-08 17:17:13 +00:00 committed by fredkbot
parent 88c1bbe3a7
commit eed81fa213

View file

@ -40,11 +40,11 @@ export function stringifyChunk(result: SSRResult, chunk: string | SlotString | R
}
}
default: {
if(isSlotString(chunk as string)) {
if (isSlotString(chunk as string)) {
let out = '';
const c = (chunk as SlotString);
if(c.instructions) {
for(const instr of c.instructions) {
const c = chunk as SlotString;
if (c.instructions) {
for (const instr of c.instructions) {
out += stringifyChunk(result, instr);
}
}