time-to-botec/js/node_modules/@stdlib/utils/constructor-name/docs/repl.txt
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

27 lines
393 B
Plaintext

{{alias}}( val )
Determines the name of a value's constructor.
Parameters
----------
val: any
Input value.
Returns
-------
out: string
Name of a value's constructor.
Examples
--------
> var v = {{alias}}( 'a' )
'String'
> v = {{alias}}( {} )
'Object'
> v = {{alias}}( true )
'Boolean'
See Also
--------