MCPcopy Create free account
hub / github.com/NativeScript/android / IsNullOrUndefined

Method IsNullOrUndefined

test-app/runtime/src/main/cpp/include/v8-value.h:490–496  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

488}
489
490bool Value::IsNullOrUndefined() const {
491#ifdef V8_ENABLE_CHECKS
492 return FullIsNull() || FullIsUndefined();
493#else
494 return QuickIsNullOrUndefined();
495#endif
496}
497
498bool Value::QuickIsNullOrUndefined() const {
499 using A = internal::Address;

Calls

no outgoing calls