Checks if a value represents an explicit (null).
The value to check.
Is explicit (null) or not.
import { isExplicitNull, NULL } from '@egomobile/orm'// following values return (true)isExplicitNull(NULL)isExplicitNull(Symbol('NULL'))// anything else is (false) Copy
import { isExplicitNull, NULL } from '@egomobile/orm'// following values return (true)isExplicitNull(NULL)isExplicitNull(Symbol('NULL'))// anything else is (false)
Generated using TypeDoc
Checks if a value represents an explicit (null).