Node.js docs' crypto module documentation uses top level await to import, but it's clearly not a dynamic import
What is the difference between the 2 statement below (they seems to do the same)
import * as fs from 'fs'
const fs_ = await import('fs'); // why use this?