Skip to content

Commit

Permalink
feat(constants): add float32 ln-ten constant
Browse files Browse the repository at this point in the history
  • Loading branch information
vivekmaurya001 committed Dec 5, 2024
1 parent 10e0702 commit 72a99a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ tape( 'main export is a number', function test( t ) {
t.end();
});

tape( 'export is a double-precision floating-point number equal to ` 2.3025851249694824`', function test( t ) {
tape( 'export is a single-precision floating-point number equal to ` 2.3025851249694824`', function test( t ) {
t.equal( FLOAT32_LN10, lnf( 10.0 ), 'equals 2.3025851249694824' );
t.end();
});
Expand Down

0 comments on commit 72a99a1

Please sign in to comment.