| 23 | */ |
| 24 | template <typename T> |
| 25 | inline T MaybeUnwrap(MaybeOrValue<T> maybe) { |
| 26 | #if defined(NODE_ADDON_API_ENABLE_MAYBE) |
| 27 | return maybe.Unwrap(); |
| 28 | #else |
| 29 | return maybe; |
| 30 | #endif |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * A test helper that converts MaybeOrValue<T> to T by getting the value that |
no test coverage detected