summaryrefslogtreecommitdiff
path: root/std/node/tests/cjs/cjs_throw.js
blob: 3def8cc8521bc9aa28895e6f22b3235c890b6c51 (plain)
1
2
3
4
5
6
function hello() {
  throw new Error("bye");
}

// deno-lint-ignore no-undef
module.exports = { hello };