Skip to content

Commit d915af5

Browse files
committed
Auto-generated commit
1 parent bc23036 commit d915af5

File tree

9 files changed

+12
-10
lines changed

9 files changed

+12
-10
lines changed

.editorconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ indent_style = tab
8686
[*.{f,f.txt}]
8787
indent_style = space
8888
indent_size = 2
89-
insert_final_newline = false
9089

9190
# Set properties for shell files:
9291
[*.{sh,sh.txt}]

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-01-06)
7+
## Unreleased (2025-01-20)
88

99
<section class="packages">
1010

@@ -79,6 +79,7 @@ A total of 2 people contributed to this release. Thank you to the following cont
7979

8080
<details>
8181

82+
- [`ff97e29`](https://github.com/stdlib-js/stdlib/commit/ff97e29be19b90e74565d410af768774bf96bf2e) - **chore:** update wording from non-negative to nonnegative _(by Philipp Burckhardt)_
8283
- [`563a4f8`](https://github.com/stdlib-js/stdlib/commit/563a4f826ab757636ae08094fc6f62746042da4b) - **docs:** update related packages sections [(#4594)](https://github.com/stdlib-js/stdlib/pull/4594) _(by stdlib-bot)_
8384
- [`8a15baa`](https://github.com/stdlib-js/stdlib/commit/8a15baa639e8c4f45479821cf7331715e0546e86) - **docs:** update related packages sections [(#4425)](https://github.com/stdlib-js/stdlib/pull/4425) _(by stdlib-bot)_
8485
- [`4a70790`](https://github.com/stdlib-js/stdlib/commit/4a707903dfef7c2b56216000165706497d19a251) - **style:** add missing spaces _(by Philipp Burckhardt)_

CONTRIBUTORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Daniel Killenberger <daniel.killenberger@gmail.com>
2727
Daniel Yu <40680511+Daniel777y@users.noreply.github.com>
2828
Debashis Maharana <debashismaharana7854@gmail.com>
2929
Desh Deepak Kant <118960904+DeshDeepakKant@users.noreply.github.com>
30+
Dev Goel <135586571+corsairier@users.noreply.github.com>
3031
Dhruv Arvind Singh <154677013+DhruvArvindSingh@users.noreply.github.com>
3132
Divyansh Seth <59174836+sethdivyansh@users.noreply.github.com>
3233
Dominic Lim <46486515+domlimm@users.noreply.github.com>
@@ -50,6 +51,7 @@ Joey Reed <joeyrreed@gmail.com>
5051
Jordan Gallivan <115050475+Jordan-Gallivan@users.noreply.github.com>
5152
Joris Labie <joris.labie1@gmail.com>
5253
Justin Dennison <justin1dennison@gmail.com>
54+
Karan Anand <119553199+anandkaranubc@users.noreply.github.com>
5355
Karthik Prakash <116057817+skoriop@users.noreply.github.com>
5456
Kohantika Nath <145763549+kohantikanath@users.noreply.github.com>
5557
Krishnendu Das <86651039+itskdhere@users.noreply.github.com>

docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2643,7 +2643,7 @@ interface Namespace {
26432643
*
26442644
* - The function validates that a value is a string. For all other types, the function returns `false`.
26452645
*
2646-
* - A duration string is a string containing a sequence of time units. A time unit is a non-negative integer followed by a unit identifier. The following unit identifiers are supported:
2646+
* - A duration string is a string containing a sequence of time units. A time unit is a nonnegative integer followed by a unit identifier. The following unit identifiers are supported:
26472647
*
26482648
* - `d`: days
26492649
* - `h`: hours

is-duration-string/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ bool = isDurationString( '1d2h' );
5252

5353
- The function validates that a `value` is a `string`. For all other types, the function returns `false`.
5454

55-
- A duration string is a string containing a sequence of time units. A time unit is a non-negative integer followed by a unit identifier. The following unit identifiers are supported:
55+
- A duration string is a string containing a sequence of time units. A time unit is a nonnegative integer followed by a unit identifier. The following unit identifiers are supported:
5656

5757
- `d`: days
5858
- `h`: hours

is-duration-string/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
function returns `false`.
77

88
A duration string is a string containing a sequence of time units. A time
9-
unit is a non-negative integer followed by a unit identifier. The following
9+
unit is a nonnegative integer followed by a unit identifier. The following
1010
unit identifiers are supported:
1111

1212
- d: days.

is-duration-string/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
*
2626
* - The function validates that a value is a string. For all other types, the function returns `false`.
2727
*
28-
* - A duration string is a string containing a sequence of time units. A time unit is a non-negative integer followed by a unit identifier. The following unit identifiers are supported:
28+
* - A duration string is a string containing a sequence of time units. A time unit is a nonnegative integer followed by a unit identifier. The following unit identifiers are supported:
2929
*
3030
* - `d`: days
3131
* - `h`: hours

is-duration-string/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ var RE_DURATION_STRING = /^(?:\d+d)?(?:\d+h)?(?:\d+m)?(?:\d+s)?(?:\d+ms)?$/i;
3737
*
3838
* - The function validates that a value is a string. For all other types, the function returns `false`.
3939
*
40-
* - A duration string is a string containing a sequence of time units. A time unit is a non-negative integer followed by a unit identifier. The following unit identifiers are supported:
40+
* - A duration string is a string containing a sequence of time units. A time unit is a nonnegative integer followed by a unit identifier. The following unit identifiers are supported:
4141
*
4242
* - `d`: days
4343
* - `h`: hours

is-property-key/test/test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@ tape( 'the function returns `true` if provided a symbol primitive', opts, functi
5454
t.end();
5555
});
5656

57-
tape( 'the function returns `true` if provided a non-negative integer primitive', function test( t ) {
57+
tape( 'the function returns `true` if provided a nonnegative integer primitive', function test( t ) {
5858
t.strictEqual( isPropertyKey( 0 ), true, 'returns true' );
5959
t.strictEqual( isPropertyKey( 1 ), true, 'returns true' );
6060
t.strictEqual( isPropertyKey( 139 ), true, 'returns true' );
6161
t.end();
6262
});
6363

64-
tape( 'the function returns `false` if not provided a string, symbol, or non-negative integer primitive', function test( t ) {
64+
tape( 'the function returns `false` if not provided a string, symbol, or nonnegative integer primitive', function test( t ) {
6565
var values;
6666
var i;
6767

@@ -77,7 +77,7 @@ tape( 'the function returns `false` if not provided a string, symbol, or non-neg
7777
[],
7878
function noop() {},
7979
new String( 'beep' ), // eslint-disable-line no-new-wrappers
80-
new Number( 1 ) // eslint-disable-line no-new-wrappers
80+
new Number( 1 )
8181
];
8282

8383
for ( i = 0; i < values.length; i++ ) {

0 commit comments

Comments
 (0)