@stdlib/assert
Version:
Standard assertion utilities.
84 lines (66 loc) • 1.69 kB
Plain Text
{{alias}}( value )
Tests if a value is a positive finite number.
Parameters
----------
value: any
Value to test.
Returns
-------
bool: boolean
Boolean indicating whether a value is a positive finite number.
Examples
--------
> var bool = {{alias}}( 5.0 )
true
> bool = {{alias}}( new Number( 5.0 ) )
true
> bool = {{alias}}( 3.14 )
true
> bool = {{alias}}( -5.0 )
false
> var bool = {{alias}}( 1.0/0.0 )
false
> bool = {{alias}}( new Number( 1.0/0.0 ) )
false
> bool = {{alias}}( null )
false
{{alias}}.isPrimitive( value )
Tests if a value is a number primitive having a positive finite value.
Parameters
----------
value: any
Value to test.
Returns
-------
bool: boolean
Boolean indicating if a value is a number primitive having a positive
finite value.
Examples
--------
> var bool = {{alias}}.isPrimitive( 3.0 )
true
> var bool = {{alias}}.isPrimitive( 1.0/0.0 )
false
> bool = {{alias}}.isPrimitive( new Number( 3.0 ) )
false
{{alias}}.isObject( value )
Tests if a value is a number object having a positive finite value.
Parameters
----------
value: any
Value to test.
Returns
-------
bool: boolean
Boolean indicating whether value is a number object having a positive
finite value.
Examples
--------
> var bool = {{alias}}.isObject( 3.0 )
false
> bool = {{alias}}.isObject( new Number( 3.0 ) )
true
> bool = {{alias}}.isObject( new Number( 1.0/0.0 ) )
false
See Also
--------