time-to-botec/squiggle/node_modules/@stdlib/string/percent-encode/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

23 lines
342 B
Plaintext

{{alias}}( str )
Percent-encodes a UTF-16 encoded string according to RFC 3986.
Parameters
----------
str: string
UTF-16 encoded string.
Returns
-------
out: string
Percent-encoded string.
Examples
--------
> var out = {{alias}}( '☃' )
'%E2%98%83'
See Also
--------