Skip to content

Commit ef91291

Browse files
docs: update REPL namespace documentation
PR-URL: #9595 Co-authored-by: Philipp Burckhardt <pburckhardt@outlook.com> Reviewed-by: Philipp Burckhardt <pburckhardt@outlook.com> Signed-off-by: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com>
1 parent c68ca1f commit ef91291

4 files changed

Lines changed: 5 additions & 6 deletions

File tree

lib/node_modules/@stdlib/repl/code-blocks/data/data.csv

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4322,7 +4322,6 @@ pad,"var out = pad( 'a', 5 )\nout = pad( 'a', 10, { 'lpad': 'b' } )\nout = pad(
43224322
padjust,"var pvalues = [ 0.008, 0.03, 0.123, 0.6, 0.2 ];\nvar out = padjust( pvalues, 'bh' )\nout = padjust( pvalues, 'bonferroni' )\nout = padjust( pvalues, 'by' )\nout = padjust( pvalues, 'holm' )\nout = padjust( pvalues, 'hommel' )\n"
43234323
papply,"function add( x, y ) { return x + y; };\nvar add2 = papply( add, 2 );\nvar sum = add2( 3 )\n"
43244324
papplyRight,"function say( text, name ) { return text + ', ' + name + '.'; };\nvar toGrace = papplyRight( say, 'Grace Hopper' );\nvar str = toGrace( 'Hello' )\nstr = toGrace( 'Thank you' )\n"
4325-
parallel,"function done( error ) { if ( error ) { throw error; } };\nvar files = [ './a.js', './b.js' ];\nparallel( files, done );\nvar opts = { 'workers': 8 };\nparallel( files, opts, done );\n"
43264325
parseJSON,"var obj = parseJSON( '{\"beep\":\"boop\"}' )\nfunction reviver( key, value ) {\n if ( key === '' ) { return value; }\n if ( key === 'beep' ) { return value; }\n };\nvar str = '{\"beep\":\"boop\",\"a\":\"b\"}';\nvar out = parseJSON( str, reviver )\n"
43274326
pascalcase,"var out = pascalcase( 'Hello World!' )\nout = pascalcase( 'beep boop' )\n"
43284327
PATH_DELIMITER,"PATH_DELIMITER\nvar path = '/usr/bin:/bin:/usr/sbin';\nvar parts = path.split( PATH_DELIMITER )\npath = 'C:\\Windows\\system32;C:\\Windows';\nparts = path.split( PATH_DELIMITER )\n"

lib/node_modules/@stdlib/repl/code-blocks/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)