├── .github └── workflows │ ├── npm-release.yml │ └── verify.yml ├── .gitignore ├── .gitpod.Dockerfile ├── .gitpod.yml ├── CHANGELOG.md ├── README.md ├── deno.json ├── jsr.json ├── mod.ts ├── npm.ts └── t ├── asserts.ts ├── bdd.ts ├── continuation.test.ts └── error.test.ts /.github/workflows/npm-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefrontside/continuation/HEAD/.github/workflows/npm-release.yml -------------------------------------------------------------------------------- /.github/workflows/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefrontside/continuation/HEAD/.github/workflows/verify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /npm/ 2 | -------------------------------------------------------------------------------- /.gitpod.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefrontside/continuation/HEAD/.gitpod.Dockerfile -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- 1 | image: 2 | file: .gitpod.Dockerfile -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefrontside/continuation/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefrontside/continuation/HEAD/README.md -------------------------------------------------------------------------------- /deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefrontside/continuation/HEAD/deno.json -------------------------------------------------------------------------------- /jsr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefrontside/continuation/HEAD/jsr.json -------------------------------------------------------------------------------- /mod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefrontside/continuation/HEAD/mod.ts -------------------------------------------------------------------------------- /npm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefrontside/continuation/HEAD/npm.ts -------------------------------------------------------------------------------- /t/asserts.ts: -------------------------------------------------------------------------------- 1 | export * from "https://deno.land/std@0.129.0/testing/asserts.ts"; 2 | -------------------------------------------------------------------------------- /t/bdd.ts: -------------------------------------------------------------------------------- 1 | export * from "https://deno.land/std@0.136.0/testing/bdd.ts"; 2 | -------------------------------------------------------------------------------- /t/continuation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefrontside/continuation/HEAD/t/continuation.test.ts -------------------------------------------------------------------------------- /t/error.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thefrontside/continuation/HEAD/t/error.test.ts --------------------------------------------------------------------------------