Add missing ;

This commit is contained in:
Jorge
2023-06-23 23:10:06 +02:00
committed by GitHub
parent 3c980db93a
commit 08b9a5e2b2

View File

@@ -32,5 +32,5 @@ app.get('/some/path', function (req, res) {
Eta.render(tainted); // NOT OK
Sqrl.render(tainted); // NOT OK
webix.ui({ template: tainted }); // NOT OK
webix.ui({ template: function () { return tainted } }) // NOT OK
webix.ui({ template: function () { return tainted } }); // NOT OK
});