| 13 | } |
| 14 | |
| 15 | Object Init(Env env, Object exports) { |
| 16 | exports.Set("throwStdException", Napi::Function::New(env, ThrowStdException)); |
| 17 | exports.Set("throwPrimitiveException", |
| 18 | Napi::Function::New(env, ThrowPrimitiveException)); |
| 19 | return exports; |
| 20 | } |
| 21 | |
| 22 | NODE_API_MODULE(addon, Init) |