deno_cli 0.23.0

Provides the deno executable
Documentation
1
2
3
4
5
6
7
8
9
10
function foo(): never {
  throw new Error("foo");
}

try {
  foo();
} catch (e) {
  console.log(e);
  throw e;
}