├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .nvmrc ├── LICENSE ├── README.md ├── img └── module-graph-cycle-async.svg ├── package.json └── spec.html /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-top-level-await/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-top-level-await/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-top-level-await/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-top-level-await/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-top-level-await/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-top-level-await/HEAD/README.md -------------------------------------------------------------------------------- /img/module-graph-cycle-async.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-top-level-await/HEAD/img/module-graph-cycle-async.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-top-level-await/HEAD/package.json -------------------------------------------------------------------------------- /spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tc39/proposal-top-level-await/HEAD/spec.html --------------------------------------------------------------------------------