Add missing semicolon

This commit is contained in:
GCHQ 77703 2018-08-26 21:14:40 +01:00
parent 542809d5f5
commit 16858443e0

View File

@ -41,7 +41,7 @@ class RenderMoustache extends Operation {
run(input, args) {
const [template] = args;
return Moustache.render(template, input)
return Moustache.render(template, input);
}
}