| 39 | */ |
| 40 | template <typename T> |
| 41 | inline T MaybeUnwrapOr(MaybeOrValue<T> maybe, const T& default_value) { |
| 42 | #if defined(NODE_ADDON_API_ENABLE_MAYBE) |
| 43 | return maybe.UnwrapOr(default_value); |
| 44 | #else |
| 45 | USE(default_value); |
| 46 | return maybe; |
| 47 | #endif |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * A test helper that converts MaybeOrValue<T> to T by getting the value that |
no test coverage detected