├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── deno.json ├── deno.lock ├── mod.test.ts └── mod.ts /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsherret/deno-which/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsherret/deno-which/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsherret/deno-which/HEAD/README.md -------------------------------------------------------------------------------- /deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsherret/deno-which/HEAD/deno.json -------------------------------------------------------------------------------- /deno.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsherret/deno-which/HEAD/deno.lock -------------------------------------------------------------------------------- /mod.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsherret/deno-which/HEAD/mod.test.ts -------------------------------------------------------------------------------- /mod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dsherret/deno-which/HEAD/mod.ts --------------------------------------------------------------------------------