Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions lib/node_modules/@stdlib/repl/code-blocks/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -5644,6 +5644,7 @@ transformStream.objectMode,"var s = transformStream.objectMode();\ns.write( { 'v
transformStream.ctor,"function fcn( chunk, enc, cb ) { cb( null, chunk.toString()+'-beep' ); };\nvar opts = { 'highWaterMark': 64, 'transform': fcn };\nvar customStream = transformStream.ctor( opts );\nvar s = customStream();\ns.write( 'a' );\ns.write( 'b' );\ns.write( 'c' );\ns.end();\n"
trim,"var out = trim( ' \t\t\n Beep \r\n\t ' )\n"
trues,"var arr = trues( [ 2, 2 ] )\n"
truesLike,"var opts = { 'dtype': 'generic' };\nvar x = ndempty( [ 2, 2 ], opts )\nvar y = truesLike( x )\n"
truncate,"var str = 'beep boop';\nvar out = truncate( str, 5 )\nout = truncate( str, 5, '|' )\n"
truncateMiddle,"var str = 'beep boop';\nvar out = truncateMiddle( str, 5 )\nout = truncateMiddle( str, 5, '|' )\n"
trycatch,"function x() {\n if ( base.random.randu() < 0.5 ) {\n throw new Error( 'beep' );\n }\n return 1.0;\n };\nvar z = trycatch( x, -1.0 )\n"
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/code-blocks/data/data.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/repl/help/data/data.csv

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/help/data/data.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions lib/node_modules/@stdlib/repl/info/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -5646,6 +5646,7 @@ transformStream.objectMode,"\ntransformStream.objectMode( [options:Object] )\n
transformStream.ctor,"\ntransformStream.ctor( [options:Object] )\n Returns a custom transform stream constructor.\n"
trim,"\ntrim( str:string )\n Trims whitespace from the beginning and end of a `string`.\n"
trues,"\ntrues( shape:ArrayLikeObject<integer>|integer[, options:Object] )\n Returns an ndarray filled with `true` values and having a specified shape\n and data type.\n"
truesLike,"\ntruesLike( x:ndarray[, options:Object] )\n Returns an ndarray filled with `true` values and having the same shape and\n data type as a provided input ndarray.\n"
truncate,"\ntruncate( str:string, len:integer[, ending:string] )\n Truncates a string to a specified length.\n"
truncateMiddle,"\ntruncateMiddle( str:string, len:integer[, seq:string] )\n Truncates a string in the middle to a specified length.\n"
trycatch,"\ntrycatch( x:Function, y:any )\n If a function does not throw, returns the function return value; otherwise,\n returns `y`.\n"
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/info/data/data.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions lib/node_modules/@stdlib/repl/signature/data/data.csv
Original file line number Diff line number Diff line change
Expand Up @@ -5730,6 +5730,7 @@ transformStream.objectMode,"transformStream.objectMode( [options] )"
transformStream.ctor,"transformStream.ctor( [options] )"
trim,"trim( str )"
trues,"trues( shape[, options] )"
truesLike,"truesLike( x[, options] )"
truncate,"truncate( str, len[, ending] )"
truncateMiddle,"truncateMiddle( str, len[, seq] )"
trycatch,"trycatch( x, y )"
Expand Down
2 changes: 1 addition & 1 deletion lib/node_modules/@stdlib/repl/signature/data/data.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -5730,6 +5730,7 @@ transformStream.objectMode,"transformStream.objectMode( [options:Object] )"
transformStream.ctor,"transformStream.ctor( [options:Object] )"
trim,"trim( str:string )"
trues,"trues( shape:ArrayLikeObject<integer>|integer[, options:Object] )"
truesLike,"truesLike( x:ndarray[, options:Object] )"
truncate,"truncate( str:string, len:integer[, ending:string] )"
truncateMiddle,"truncateMiddle( str:string, len:integer[, seq:string] )"
trycatch,"trycatch( x:Function, y:any )"
Expand Down

Large diffs are not rendered by default.