"nunjucks": "^3.2.4", Async filter ``` .addFilter('await', async function (value, cb) { const res = await new Promise((_resolve, _reject) => { _resolve(value) }) cb(null, res) }, true) ``` with template ``` {% asyncEach rec in ["qwe"] | await %} {{ rec }} {% endeach %} ``` doesn't work and renders nothing