Skip to content

Commit d5dae75

Browse files
committed
Auto-generated commit
1 parent bf7bdf0 commit d5dae75

File tree

9 files changed

+10
-5
lines changed

9 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-08-16)
7+
## Unreleased (2025-08-17)
88

99
<section class="features">
1010

@@ -57,6 +57,7 @@ A total of 2 issues were closed in this release:
5757

5858
<details>
5959

60+
- [`c940d58`](https://github.com/stdlib-js/stdlib/commit/c940d5871c3e892cd67dd8fa2b1dbadd87465733) - **docs:** update REPL namespace documentation [(#7903)](https://github.com/stdlib-js/stdlib/pull/7903) _(by stdlib-bot)_
6061
- [`ca26c53`](https://github.com/stdlib-js/stdlib/commit/ca26c53f8ecdd292c1addd920a11210dc5af7d9d) - **docs:** update REPL namespace documentation [(#7891)](https://github.com/stdlib-js/stdlib/pull/7891) _(by stdlib-bot)_
6162
- [`4754d60`](https://github.com/stdlib-js/stdlib/commit/4754d60576057a62db0c9c99bfa2b886676b4530) - **docs:** update REPL namespace documentation [(#7879)](https://github.com/stdlib-js/stdlib/pull/7879) _(by stdlib-bot)_
6263
- [`07f7c05`](https://github.com/stdlib-js/stdlib/commit/07f7c0522c73e6ad9505e1d45035ae439344200d) - **test:** use standardized assertion messages and fix lint errors _(by Philipp Burckhardt)_

code-blocks/data/data.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3152,6 +3152,7 @@ HOURS_IN_DAY,"var days = 3.14;\nvar hrs = days * HOURS_IN_DAY\n"
31523152
HOURS_IN_WEEK,"var wks = 3.14;\nvar hrs = wks * HOURS_IN_WEEK\n"
31533153
hoursInMonth,"var num = hoursInMonth()\nnum = hoursInMonth( 2 )\nnum = hoursInMonth( 2, 2016 )\nnum = hoursInMonth( 2, 2017 )\nnum = hoursInMonth( 'feb', 2016 )\nnum = hoursInMonth( 'february', 2016 )\n"
31543154
hoursInYear,"var num = hoursInYear()\nnum = hoursInYear( 2016 )\nnum = hoursInYear( 2017 )\n"
3155+
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"
31553156
identity,"var v = identity( 3.14 )\n"
31563157
ifelse,"var z = ifelse( true, 1.0, -1.0 )\nz = ifelse( false, 1.0, -1.0 )\n"
31573158
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"

code-blocks/data/data.json

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

info/data/data.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3153,6 +3153,7 @@ HOURS_IN_DAY,"\nHOURS_IN_DAY\n Number of hours in a day.\n"
31533153
HOURS_IN_WEEK,"\nHOURS_IN_WEEK\n Number of hours in a week.\n"
31543154
hoursInMonth,"\nhoursInMonth( [month:string|Date|integer[, year:integer]] )\n Returns the number of hours in a month.\n"
31553155
hoursInYear,"\nhoursInYear( [value:integer|Date] )\n Returns the number of hours in a year according to the Gregorian calendar.\n"
3156+
httpServerFactory,"\nhttpServerFactory( [options:Object,] [requestListener:Function] )\n Returns a function to create an HTTP server.\n"
31563157
identity,"\nidentity( x:any )\n Identity function.\n"
31573158
ifelse,"\nifelse( bool:boolean, x:any, y:any )\n If a condition is truthy, returns `x`; otherwise, returns `y`.\n"
31583159
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"

info/data/data.json

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

signature/data/data.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3192,6 +3192,7 @@ HOURS_IN_DAY,"HOURS_IN_DAY"
31923192
HOURS_IN_WEEK,"HOURS_IN_WEEK"
31933193
hoursInMonth,"hoursInMonth( [month[, year]] )"
31943194
hoursInYear,"hoursInYear( [value] )"
3195+
httpServerFactory,"httpServerFactory( [options,] [requestListener] )"
31953196
identity,"identity( x )"
31963197
ifelse,"ifelse( bool, x, y )"
31973198
ifelseAsync,"ifelseAsync( predicate, x, y, done )"

signature/data/data.json

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

typed-signature/data/data.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3192,6 +3192,7 @@ HOURS_IN_DAY,"HOURS_IN_DAY"
31923192
HOURS_IN_WEEK,"HOURS_IN_WEEK"
31933193
hoursInMonth,"hoursInMonth( [month:string|Date|integer[, year:integer]] )"
31943194
hoursInYear,"hoursInYear( [value:integer|Date] )"
3195+
httpServerFactory,"httpServerFactory( [options:Object,] [requestListener:Function] )"
31953196
identity,"identity( x:any )"
31963197
ifelse,"ifelse( bool:boolean, x:any, y:any )"
31973198
ifelseAsync,"ifelseAsync( predicate:Function, x:any, y:any, done:Function )"

typed-signature/data/data.json

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

0 commit comments

Comments
 (0)