export function parseMustacheTemplate(template: string) { return (template.match(/{{(.*?)}}/g) ?? []).map(v => v.replace(/{|}/g, '')); }