Skip to content

Commit 5da249d

Browse files
committed
Auto-generated commit
1 parent 1ef7329 commit 5da249d

File tree

6 files changed

+45
-7
lines changed

6 files changed

+45
-7
lines changed

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,41 @@
22

33
> Package changelog.
44
5+
<section class="release" id="unreleased">
6+
7+
## Unreleased (2025-08-25)
8+
9+
<section class="commits">
10+
11+
### Commits
12+
13+
<details>
14+
15+
- [`3d2f3c7`](https://github.com/stdlib-js/stdlib/commit/3d2f3c70a73bfb11428d490e91c04f4744d32d23) - **docs:** clean-up example code _(by Philipp Burckhardt)_
16+
- [`f9651e6`](https://github.com/stdlib-js/stdlib/commit/f9651e6411b4ebd3c95dcc6b46c02e6d5be009fa) - **test:** use .strictEqual() instead of .equal() and fix lint errors _(by Philipp Burckhardt)_
17+
18+
</details>
19+
20+
</section>
21+
22+
<!-- /.commits -->
23+
24+
<section class="contributors">
25+
26+
### Contributors
27+
28+
A total of 1 person contributed to this release. Thank you to this contributor:
29+
30+
- Philipp Burckhardt
31+
32+
</section>
33+
34+
<!-- /.contributors -->
35+
36+
</section>
37+
38+
<!-- /.release -->
39+
540
<section class="release" id="v0.2.2">
641

742
## 0.2.2 (2024-07-27)

CONTRIBUTORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Abhishek G <[email protected]>
1313
Abhishek Jain <[email protected]>
1414
Adarsh Palaskar <[email protected]>
1515
Aditya Sapra <[email protected]>
16+
Aditya Singh <[email protected]>
1617
Ahmed Atwa <[email protected]>
1718
Ahmed Kashkoush <[email protected]>
1819
Ahmed Khaled <[email protected]>
@@ -121,6 +122,7 @@ Muhammad Haris <[email protected]>
121122
Muhammad Taaha Tariq <[email protected]>
122123
Muhmmad Saad <[email protected]>
123124
NEEKUorAAYUSH <[email protected]>
125+
Nakul Krishnakumar <[email protected]>
124126
Naresh Jagadeesan <[email protected]>
125127
Naveen Kumar <[email protected]>
126128
Neeraj Pathak <[email protected]>
@@ -164,6 +166,7 @@ Ruthwik Chikoti <[email protected]>
164166
Ryan Seal <[email protected]>
165167
Rylan Yang <[email protected]>
166168
SAHIL KUMAR <[email protected]>
169+
SAUJANYA MAGARDE <[email protected]>
167170
SHIVAM YADAV <[email protected]>
168171
Sachin Raj <[email protected]>
169172
Sahil Goyal <[email protected]>
@@ -186,6 +189,7 @@ Sivam Das <[email protected]>
186189
Snehil Shah <[email protected]>
187190
Soumajit Chatterjee <[email protected]>
188191
Spandan Barve <[email protected]>
192+
Srinivas Batthula <[email protected]>
189193
Stephannie Jiménez Gacha <[email protected]>
190194
Suhaib Ilahi <[email protected]>
191195
Suraj Kumar <[email protected]>

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @module @stdlib/string-repeat
2525
*
2626
* @example
27-
* var replace = require( '@stdlib/string-repeat' );
27+
* var repeat = require( '@stdlib/string-repeat' );
2828
*
2929
* var str = repeat( 'a', 5 );
3030
* // returns 'aaaaa'

test/test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,20 +100,20 @@ tape( 'the function repeats an input string a specified number of times', functi
100100
var str;
101101

102102
str = repeat( 'a', 5 );
103-
t.equal( str, 'aaaaa', 'repeated 5 times' );
103+
t.strictEqual( str, 'aaaaa', 'repeated 5 times' );
104104

105105
str = repeat( 'beep', 2 );
106-
t.equal( str, 'beepbeep', 'repeated 2 times' );
106+
t.strictEqual( str, 'beepbeep', 'repeated 2 times' );
107107

108108
t.end();
109109
});
110110

111111
tape( 'if provided an empty string, the function returns an empty string', function test( t ) {
112-
t.equal( repeat( '', 100 ), '', 'returns an empty string' );
112+
t.strictEqual( repeat( '', 100 ), '', 'returns an empty string' );
113113
t.end();
114114
});
115115

116116
tape( 'if repeat number is 0, the function returns an empty string', function test( t ) {
117-
t.equal( repeat( 'a', 0 ), '', 'returns empty string' );
117+
t.strictEqual( repeat( 'a', 0 ), '', 'returns empty string' );
118118
t.end();
119119
});

0 commit comments

Comments
 (0)