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 @@ -3152,6 +3152,7 @@ HOURS_IN_DAY,"var days = 3.14;\nvar hrs = days * HOURS_IN_DAY\n"
HOURS_IN_WEEK,"var wks = 3.14;\nvar hrs = wks * HOURS_IN_WEEK\n"
hoursInMonth,"var num = hoursInMonth()\nnum = hoursInMonth( 2 )\nnum = hoursInMonth( 2, 2016 )\nnum = hoursInMonth( 2, 2017 )\nnum = hoursInMonth( 'feb', 2016 )\nnum = hoursInMonth( 'february', 2016 )\n"
hoursInYear,"var num = hoursInYear()\nnum = hoursInYear( 2016 )\nnum = hoursInYear( 2017 )\n"
httpServerFactory,"var boot = httpServerFactory()\nfunction onRequest( request, response ) {\nconsole.log( request.url );\nresponse.end( 'OK' );\n };\nboot = httpServerFactory( onRequest )\nvar opts = { 'port': 7331 };\nboot = httpServerFactory( opts )\n"
identity,"var v = identity( 3.14 )\n"
ifelse,"var z = ifelse( true, 1.0, -1.0 )\nz = ifelse( false, 1.0, -1.0 )\n"
ifelseAsync,"function predicate( clbk ) {\n setTimeout( onTimeout, 0 );\n function onTimeout() {\n clbk( null, true );\n }\n };\nfunction done( error, result ) {\n if ( error ) {\n throw error;\n }\n console.log( result );\n };\nifelseAsync( predicate, 'beep', 'boop', done )\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.

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 @@ -3153,6 +3153,7 @@ HOURS_IN_DAY,"\nHOURS_IN_DAY\n Number of hours in a day.\n"
HOURS_IN_WEEK,"\nHOURS_IN_WEEK\n Number of hours in a week.\n"
hoursInMonth,"\nhoursInMonth( [month:string|Date|integer[, year:integer]] )\n Returns the number of hours in a month.\n"
hoursInYear,"\nhoursInYear( [value:integer|Date] )\n Returns the number of hours in a year according to the Gregorian calendar.\n"
httpServerFactory,"\nhttpServerFactory( [options:Object,] [requestListener:Function] )\n Returns a function to create an HTTP server.\n"
identity,"\nidentity( x:any )\n Identity function.\n"
ifelse,"\nifelse( bool:boolean, x:any, y:any )\n If a condition is truthy, returns `x`; otherwise, returns `y`.\n"
ifelseAsync,"\nifelseAsync( predicate:Function, x:any, y:any, done:Function )\n If a predicate function returns a truthy value, returns `x`; 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 @@ -3192,6 +3192,7 @@ HOURS_IN_DAY,"HOURS_IN_DAY"
HOURS_IN_WEEK,"HOURS_IN_WEEK"
hoursInMonth,"hoursInMonth( [month[, year]] )"
hoursInYear,"hoursInYear( [value] )"
httpServerFactory,"httpServerFactory( [options,] [requestListener] )"
identity,"identity( x )"
ifelse,"ifelse( bool, x, y )"
ifelseAsync,"ifelseAsync( predicate, x, y, done )"
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 @@ -3192,6 +3192,7 @@ HOURS_IN_DAY,"HOURS_IN_DAY"
HOURS_IN_WEEK,"HOURS_IN_WEEK"
hoursInMonth,"hoursInMonth( [month:string|Date|integer[, year:integer]] )"
hoursInYear,"hoursInYear( [value:integer|Date] )"
httpServerFactory,"httpServerFactory( [options:Object,] [requestListener:Function] )"
identity,"identity( x:any )"
ifelse,"ifelse( bool:boolean, x:any, y:any )"
ifelseAsync,"ifelseAsync( predicate:Function, x:any, y:any, done:Function )"
Expand Down

Large diffs are not rendered by default.