time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

repl.txt (504B)


      1 
      2 {{alias}}( url )
      3     Opens a URL in a user's default browser.
      4 
      5     In a non-browser environment, the function returns an unreferenced child
      6     process. In a browser environment, the function returns a reference to a
      7     `window` object.
      8 
      9     Parameters
     10     ----------
     11     url: string
     12         URL to open.
     13 
     14     Returns
     15     -------
     16     out: process|Window
     17         Child process or `window` object.
     18 
     19     Examples
     20     --------
     21     > var out = {{alias}}( 'https://google.com' );
     22 
     23     See Also
     24     --------
     25