Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: remove erroneous test case for empty array in reinterpret function
  • Loading branch information
gururaj1512 committed May 11, 2026
commit cef46ed0cba8a9fcc41f87d5e58d1a7f7a833c98
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ import reinterpret = require( './index' );
reinterpret( false, 0 ); // $ExpectError
reinterpret( null, 0 ); // $ExpectError
reinterpret( undefined, 0 ); // $ExpectError
reinterpret( [], 0 ); // $ExpectError
reinterpret( {}, 0 ); // $ExpectError
reinterpret( ( x: number ): number => x, 0 ); // $ExpectError
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
* limitations under the License.
*/

/* eslint-disable stdlib/jsdoc-typedef-typos */

'use strict';

// MODULES //
Expand Down
Loading