Skip to content

Commit 14cf5d2

Browse files
committed
Auto-generated commit
1 parent 1334b8f commit 14cf5d2

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

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

99
<section class="reverts">
1010

@@ -22,6 +22,7 @@
2222

2323
<details>
2424

25+
- [`56cd0bf`](https://github.com/stdlib-js/stdlib/commit/56cd0bfb6e3d98349a2062e3ac26668f58ba09bb) - **refactor:** use tuple for return type _(by Karan Anand)_
2526
- [`a2cfe0e`](https://github.com/stdlib-js/stdlib/commit/a2cfe0e3fe5167301372d22dbae8e8b19917f77c) - **test:** update test messages according to current project conventions _(by Karan Anand)_
2627
- [`c5ccaff`](https://github.com/stdlib-js/stdlib/commit/c5ccaff1e7697684168c649fd87882b259664c73) - **test:** remove the use of `IS_BROWSER` from test files _(by Karan Anand)_
2728
- [`63b7891`](https://github.com/stdlib-js/stdlib/commit/63b7891a03385347320f89e6fe0458f3b5fd198c) - **refactor:** use in-house macros for building native addon bindings _(by Karan Anand)_

CONTRIBUTORS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,13 @@ Ali Salesi <ali_sal1381@yahoo.com>
2121
AlyAbdelmoneim <148393799+AlyAbdelmoneim@users.noreply.github.com>
2222
Aman Bhansali <bhansali.1@iitj.ac.in>
2323
AmanBhadkariya <140033975+AmanBhadkariya@users.noreply.github.com>
24+
Amisha Chhajed <136238836+amishhaa@users.noreply.github.com>
2425
Amit Jimiwal <amitjimiwal45@gmail.com>
2526
Annamalai Prabu <apfossdev@gmail.com>
2627
Anshu Kumar <132515490+anxhukumar@users.noreply.github.com>
2728
Anshu Kumar <contact.anshukumar@protonmail.com>
2829
Anudeep Sanapala <anudeep0306@gmail.com>
30+
Aryan Bhirud <112156883+AryanBhirud@users.noreply.github.com>
2931
Athan Reines <kgryte@gmail.com>
3032
Ayaka <73595362+USERSATOSHI@users.noreply.github.com>
3133
Bhavishy Agrawal <90029607+bhavishy2801@users.noreply.github.com>
@@ -93,6 +95,7 @@ Krishnam Agarwal <83017176+888krishnam@users.noreply.github.com>
9395
Krishnendu Das <86651039+itskdhere@users.noreply.github.com>
9496
Kshitij-Dale <152467202+Kshitij-Dale@users.noreply.github.com>
9597
Lalit Narayan Yadav <162928571+LalitNarayanYadav@users.noreply.github.com>
98+
Lokesh Ranjan <lokesh.ranjan.phe23@itbhu.ac.in>
9699
Lovelin Dhoni J B <100030865+lovelindhoni@users.noreply.github.com>
97100
MANI <77221000+Eternity0207@users.noreply.github.com>
98101
Mahfuza Humayra Mohona <mhmohona@gmail.com>

docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ interface Frexp {
6262
* var out = frexp( -Infinity );
6363
* // returns [ -Infinity , 0 ]
6464
*/
65-
( x: number ): Array<number>;
65+
( x: number ): [ number, number ];
6666

6767
/**
6868
* Splits a double-precision floating-point number into a normalized fraction and an integer power of two and assigns results to a provided output array.

docs/types/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import frexp = require( './index' );
2525

2626
// The function returns an array of numbers...
2727
{
28-
frexp( 4.0 ); // $ExpectType number[]
28+
frexp( 4.0 ); // $ExpectType [number, number]
2929
}
3030

3131
// The compiler throws an error if the function is provided an argument which is not a number...

0 commit comments

Comments
 (0)