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