Open
PrevPrevious commit
Next Next commit
fix: fixes math/base/special/lib/index for exp10f
---
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: na
  - task: lint_typescript_tests
    status: na
  - task: lint_license_headers
    status: passed
---
  • Loading branch information
@Deepak91168
Deepak91168 committedJun 17, 2025
commit 2531e41b2b7560259595d1b4b60268d57bf1da10
Original file line numberDiff line numberDiff line change
Expand Up@@ -16,7 +16,7 @@
* limitations under the License.
*/

'use strict';

Check warning on line 19 in lib/node_modules/@stdlib/math/base/special/lib/index.js

View workflow job for this annotation

Actions / Lint Changed Files

`bernoullif` should be exported from namespace `index.js`

Check warning on line 19 in lib/node_modules/@stdlib/math/base/special/lib/index.js

View workflow job for this annotation

Actions / Lint Changed Files

`aversinf` should be exported from namespace `index.js`

Check warning on line 19 in lib/node_modules/@stdlib/math/base/special/lib/index.js

View workflow job for this annotation

Actions / Lint Changed Files

`avercosf` should be exported from namespace `index.js`

Check warning on line 19 in lib/node_modules/@stdlib/math/base/special/lib/index.js

View workflow job for this annotation

Actions / Lint Changed Files

`atandf` should be exported from namespace `index.js`

Check warning on line 19 in lib/node_modules/@stdlib/math/base/special/lib/index.js

View workflow job for this annotation

Actions / Lint Changed Files

`atan2f` should be exported from namespace `index.js`

Check warning on line 19 in lib/node_modules/@stdlib/math/base/special/lib/index.js

View workflow job for this annotation

Actions / Lint Changed Files

`atan2d` should be exported from namespace `index.js`

Check warning on line 19 in lib/node_modules/@stdlib/math/base/special/lib/index.js

View workflow job for this annotation

Actions / Lint Changed Files

`ahaversinf` should be exported from namespace `index.js`

Check warning on line 19 in lib/node_modules/@stdlib/math/base/special/lib/index.js

View workflow job for this annotation

Actions / Lint Changed Files

`ahavercosf` should be exported from namespace `index.js`

Check warning on line 19 in lib/node_modules/@stdlib/math/base/special/lib/index.js

View workflow job for this annotation

Actions / Lint Changed Files

`acoversinf` should be exported from namespace `index.js`

Check warning on line 19 in lib/node_modules/@stdlib/math/base/special/lib/index.js

View workflow job for this annotation

Actions / Lint Changed Files

`acovercosf` should be exported from namespace `index.js`

/*
* When adding modules to the namespace, ensure that they are added in alphabetical order according to module name.
Expand DownExpand Up@@ -1105,7 +1105,7 @@
* @type {Function}
* @see {@link module:@stdlib/math/base/special/exp10f}
*/
setReadOnly( special, 'exp10', require( '@stdlib/math/base/special/exp10f' ) );
setReadOnly( special, 'exp10f', require( '@stdlib/math/base/special/exp10f' ) );

/**
* @name expit
Expand Down
Loading