time-to-botec/squiggle/node_modules/@stdlib/assert/is-bigint/docs/repl.txt

31 lines
556 B
Plaintext
Raw Normal View History

{{alias}}( value )
Tests if a value is a BigInt.
Parameters
----------
value: any
Value to test.
Returns
-------
bool: boolean
Boolean indicating whether a value is a BigInt.
Examples
--------
> var bool = {{alias}}( {{alias:@stdlib/bigint/ctor}}( '1' ) )
true
> bool = {{alias}}( Object( {{alias:@stdlib/bigint/ctor}}( '1' ) ) )
true
> bool = {{alias}}( {} )
false
> bool = {{alias}}( null )
false
> bool = {{alias}}( true )
false
See Also
--------