Skip to content

Commit 096fd49

Browse files
feat: fix the working of log10-e
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 7efd271 commit 096fd49

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

  • lib/node_modules/@stdlib/constants/float16/log10-e/lib

lib/node_modules/@stdlib/constants/float16/log10-e/lib/index.js

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,6 @@
2929
* // returns 0.434326171875
3030
*/
3131

32-
// MODULES //
33-
34-
var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float16' );
35-
36-
3732
// MAIN //
3833

3934
/**
@@ -45,7 +40,7 @@ var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float16' );
4540
* @see [OEIS]{@link https://oeis.org/A001113}
4641
* @see [Wikipedia]{@link https://en.wikipedia.org/wiki/E_%27mathematical_constant%28}
4742
*/
48-
var FLOAT16_LOG10E = float64ToFloat32( 0.4342944819032518 );
43+
var FLOAT16_LOG10E = 0.434326171875;
4944

5045

5146
// EXPORTS //

0 commit comments

Comments
 (0)