Function isExplicitNull

  • Checks if a value represents an explicit (null).

    Parameters

    • val: any

      The value to check.

    Returns val is typeof NULL

    Is explicit (null) or not.

    Example

    import { isExplicitNull, NULL } from '@egomobile/orm'

    // following values return (true)
    isExplicitNull(NULL)
    isExplicitNull(Symbol('NULL'))

    // anything else is (false)

Generated using TypeDoc