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

module.exports = { hello };