time-to-botec/js/node_modules/@stdlib/string/from-code-point/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

33 lines
648 B
Plaintext

{{alias}}( ...pt )
Creates a string from a sequence of Unicode code points.
In addition to multiple arguments, the function also supports providing an
array-like object as a single argument containing a sequence of Unicode code
points.
Parameters
----------
pt: ...integer
Sequence of Unicode code points.
Returns
-------
out: string
Output string.
Examples
--------
> var out = {{alias}}( 9731 )
'☃'
> out = {{alias}}( [ 9731 ] )
'☃'
> out = {{alias}}( 97, 98, 99 )
'abc'
> out = {{alias}}( [ 97, 98, 99 ] )
'abc'
See Also
--------