You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
<sectionclass="release"id="unreleased">
6
6
7
-
## Unreleased (2025-06-12)
7
+
## Unreleased (2025-06-14)
8
8
9
9
<sectionclass="reverts">
10
10
@@ -22,6 +22,7 @@
22
22
23
23
<details>
24
24
25
+
-[`56cd0bf`](https://github.com/stdlib-js/stdlib/commit/56cd0bfb6e3d98349a2062e3ac26668f58ba09bb) - **refactor:** use tuple for return type _(by Karan Anand)_
25
26
-[`a2cfe0e`](https://github.com/stdlib-js/stdlib/commit/a2cfe0e3fe5167301372d22dbae8e8b19917f77c) - **test:** update test messages according to current project conventions _(by Karan Anand)_
26
27
-[`c5ccaff`](https://github.com/stdlib-js/stdlib/commit/c5ccaff1e7697684168c649fd87882b259664c73) - **test:** remove the use of `IS_BROWSER` from test files _(by Karan Anand)_
27
28
-[`63b7891`](https://github.com/stdlib-js/stdlib/commit/63b7891a03385347320f89e6fe0458f3b5fd198c) - **refactor:** use in-house macros for building native addon bindings _(by Karan Anand)_
Copy file name to clipboardExpand all lines: docs/types/index.d.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,7 @@ interface Frexp {
62
62
* var out = frexp( -Infinity );
63
63
* // returns [ -Infinity , 0 ]
64
64
*/
65
-
(x: number): Array<number>;
65
+
(x: number): [number,number];
66
66
67
67
/**
68
68
* 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.
0 commit comments