FiloSottile / typage

A TypeScript implementation of the age file encryption format, based on libsodium.
BSD 3-Clause "New" or "Revised" License
64 stars 9 forks source link

docs: Use TLA #4

Closed hyperupcall closed 11 months ago

hyperupcall commented 11 months ago

Top Level Await was activated by default (not behind a flag) since Node v14.8. Node v14 is no longer maintained, so we can remove the IIFE ceremony of (async () => {})() and just use await directly.

I replaced the IIFE with a compound statement block since it seemed it was intended to have the codes separated in some way.

FiloSottile commented 11 months ago

Sweet, thank you!