Skip to content

Commit 7d0d408

Browse files
committed
Auto-generated commit
1 parent 30fd880 commit 7d0d408

File tree

3 files changed

+51
-8
lines changed

3 files changed

+51
-8
lines changed

CHANGELOG.md

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

7-
## Unreleased (2025-03-02)
7+
## Unreleased (2025-03-04)
88

99
<section class="packages">
1010

1111
### Packages
1212

13+
<section class="package" id="error-reviver-unreleased">
14+
15+
#### [@stdlib/error/reviver](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/error/reviver)
16+
17+
<details>
18+
19+
<section class="issues">
20+
21+
##### Closed Issues
22+
23+
This release closes the following issue:
24+
25+
[#5526](https://github.com/stdlib-js/stdlib/issues/5526)
26+
27+
</section>
28+
29+
<!-- /.issues -->
30+
31+
</details>
32+
33+
</section>
34+
35+
<!-- /.package -->
36+
1337
<section class="package" id="error-tools-unreleased">
1438

1539
#### [@stdlib/error/tools](https://github.com/stdlib-js/stdlib/tree/develop/lib/node_modules/%40stdlib/error/tools)
@@ -92,13 +116,27 @@
92116

93117
<!-- /.packages -->
94118

119+
<section class="issues">
120+
121+
### Closed Issues
122+
123+
This release closes the following issue:
124+
125+
[#5526](https://github.com/stdlib-js/stdlib/issues/5526)
126+
127+
</section>
128+
129+
<!-- /.issues -->
130+
95131
<section class="contributors">
96132

97133
### Contributors
98134

99-
A total of 1 person contributed to this release. Thank you to this contributor:
135+
A total of 3 people contributed to this release. Thank you to the following contributors:
100136

137+
- Athan Reines
101138
- Philipp Burckhardt
139+
- ditsu
102140

103141
</section>
104142

@@ -110,6 +148,7 @@ A total of 1 person contributed to this release. Thank you to this contributor:
110148

111149
<details>
112150

151+
- [`a1e8f03`](https://github.com/stdlib-js/stdlib/commit/a1e8f03af0ee470d0783cb840878dc7cde0826c3) - **chore:** fix EditorConfig lint errors [(#5543)](https://github.com/stdlib-js/stdlib/pull/5543) _(by ditsu, Athan Reines, Philipp Burckhardt)_
113152
- [`52a3af1`](https://github.com/stdlib-js/stdlib/commit/52a3af15547afcb194741d01f1834e02fe1a2f89) - **feat:** update error databases [(#5720)](https://github.com/stdlib-js/stdlib/pull/5720) _(by stdlib-bot)_
114153
- [`a6f782c`](https://github.com/stdlib-js/stdlib/commit/a6f782c129f57a40dc31b36effbf910d3d11007c) - **feat:** update error databases [(#4806)](https://github.com/stdlib-js/stdlib/pull/4806) _(by stdlib-bot)_
115154
- [`fb83180`](https://github.com/stdlib-js/stdlib/commit/fb83180244018f56fff48fea8263d915fc8bbf2e) - **feat:** update error databases [(#4705)](https://github.com/stdlib-js/stdlib/pull/4705) _(by stdlib-bot)_

CONTRIBUTORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Aditya Sapra <[email protected]>
1111
Ahmed Atwa <[email protected]>
1212
Ahmed Kashkoush <[email protected]>
1313
Ahmed Khaled <[email protected]>
14+
Aksshay Balasubramanian <[email protected]>
1415
Aleksandr <[email protected]>
1516
Ali Salesi <[email protected]>
1617
Aman Bhansali <[email protected]>
@@ -38,6 +39,7 @@ EuniceSim142 <[email protected]>
3839
Frank Kovacs <[email protected]>
3940
GK Bishnoi <[email protected]>
4041
42+
Gautam sharma <[email protected]>
4143
Golden Kumar <[email protected]>
4244
Gunj Joshi <[email protected]>
4345
Gururaj Gurram <[email protected]>
@@ -46,6 +48,7 @@ HarshaNP <[email protected]>
4648
Harshita Kalani <[email protected]>
4749
Hridyanshu <[email protected]>
4850
Jaimin Godhani <[email protected]>
51+
Jalaj Kumar <[email protected]>
4952
James Gelok <[email protected]>
5053
Jaysukh Makvana <[email protected]>
5154
Jenish Thapa <[email protected]>
@@ -134,6 +137,7 @@ Vivek Maurya <[email protected]>
134137
Xiaochuan Ye <[email protected]>
135138
Yaswanth Kosuru <[email protected]>
136139
Yernar Yergaziyev <[email protected]>
140+
Yugal Kaushik <[email protected]>
137141
Yuvi Mittal <[email protected]>
138142
ekambains <[email protected]>
139143
fadiothman22 <[email protected]>

reviver/examples/index.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ var err1 = new SyntaxError( 'bad syntax' );
2626

2727
var json = err2json( err1 );
2828
/* e.g., returns
29-
{
30-
'type': 'SyntaxError',
31-
'name': 'SyntaxError',
32-
'message': 'bad syntax',
33-
'stack': '...'
34-
}
29+
{
30+
'type': 'SyntaxError',
31+
'name': 'SyntaxError',
32+
'message': 'bad syntax',
33+
'stack': '...'
34+
}
3535
*/
3636

3737
var str = JSON.stringify( json );

0 commit comments

Comments
 (0)