ember-resources
Advanced tools
Changelog
3.0.0 (2021-07-20)
async () => {
return await ...
}
the async
keyword was a clue to the FunctionRunner
to go down a
different code branch (before running the function), but when the above
example function was minified, it became:
() => { return ... }
which then made the FunctionRunner
go down the sync path, resulting
in the value
being a promise, rather than the resolved value of the
promise.