RA

RA

Source:

Methods

(static) isNotUndefined(val) → {Boolean}

Source:
Since:
  • v0.0.1
Signature:
  • * -> Boolean
Category:
  • Type
See:

Checks if input value is not undefined

Example
RA.isNotUndefined(1); //=> true
RA.isNotUndefined(undefined); //=> false
RA.isNotUndefined(null); //=> true
Parameters:
Name Type Description
val *

The value to test

Returns:
Type
Boolean

(static) isUndefined(val) → {Boolean}

Source:
Since:
  • v0.0.1
Signature:
  • * -> Boolean
Category:
  • Type
See:

Checks if input value is undefined

Example
RA.isUndefined(1); //=> false
RA.isUndefined(undefined); //=> true
RA.isUndefined(null); //=> false
Parameters:
Name Type Description
val *

The value to test

Returns:
Type
Boolean