time-to-botec/js/node_modules/@stdlib/utils/open-url/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

26 lines
504 B
Plaintext

{{alias}}( url )
Opens a URL in a user's default browser.
In a non-browser environment, the function returns an unreferenced child
process. In a browser environment, the function returns a reference to a
`window` object.
Parameters
----------
url: string
URL to open.
Returns
-------
out: process|Window
Child process or `window` object.
Examples
--------
> var out = {{alias}}( 'https://google.com' );
See Also
--------