Skip to content

Commit dc3f40e

Browse files
gururaj1512kgryte
authored andcommitted
remove: remove ops from namespace
This commit removes the `ops` symbol from the `@stdlib/math/base` namespace due to a package migration. BREAKING CHANGE: remove `ops` --- 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 0901e47 commit dc3f40e

File tree

2 files changed

+0
-15
lines changed

2 files changed

+0
-15
lines changed

Diff for: lib/node_modules/@stdlib/math/base/docs/types/index.d.ts

-6
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
/* eslint-disable max-lines */
2222

2323
import assert = require( '@stdlib/math/base/assert' );
24-
import ops = require( '@stdlib/math/base/ops' );
2524
import special = require( '@stdlib/math/base/special' );
2625
import tools = require( '@stdlib/math/base/tools' );
2726
import utils = require( '@stdlib/math/base/utils' );
@@ -35,11 +34,6 @@ interface Namespace {
3534
*/
3635
assert: typeof assert;
3736

38-
/**
39-
* Base (i.e., lower-level) math operators.
40-
*/
41-
ops: typeof ops;
42-
4337
/**
4438
* Base (i.e., lower-level) special math functions.
4539
*/

Diff for: lib/node_modules/@stdlib/math/base/lib/index.js

-9
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,6 @@ var ns = {};
4949
*/
5050
setReadOnly( ns, 'assert', require( '@stdlib/math/base/assert' ) );
5151

52-
/**
53-
* @name ops
54-
* @memberof ns
55-
* @readonly
56-
* @type {Namespace}
57-
* @see {@link module:@stdlib/math/base/ops}
58-
*/
59-
setReadOnly( ns, 'ops', require( '@stdlib/math/base/ops' ) );
60-
6152
/**
6253
* @name special
6354
* @memberof ns

0 commit comments

Comments
 (0)