Closed fabiancook closed 2 years ago
A clear and concise description of what the feature is.
To allow native for await usage
const navigations = appHistory .filter(isNavigateEvent) .map(e => e.destination.url) for await (const url of navigations) { console.log({ url }); }
Out of scope
🚀 Feature Proposal
A clear and concise description of what the feature is.
Motivation
To allow native for await usage
Example