| 422 | } |
| 423 | |
| 424 | NODE_GETTER(Database::JS_open) { |
| 425 | UNWRAP_OR_RETURN(Database, db, info.This()); |
| 426 | return Napi::Boolean::New(info.Env(), db->open); |
| 427 | } |
| 428 | |
| 429 | NODE_GETTER(Database::JS_inTransaction) { |
| 430 | UNWRAP_OR_RETURN(Database, db, info.This()); |
nothing calls this directly
no outgoing calls
no test coverage detected