Skip to content

Commit 6dd093d

Browse files
committed
remove: remove Stack from namespace
BREAKING CHANGE: remove `Stack` from namespace To migrate, users should access the same symbol via the `@stdlib/dstructs` namespace. --- 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 79dbcc6 commit 6dd093d

File tree

2 files changed

+0
-15
lines changed

2 files changed

+0
-15
lines changed

lib/node_modules/@stdlib/utils/docs/types/index.d.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,6 @@ import sizeOf = require( '@stdlib/utils/size-of' );
200200
import some = require( '@stdlib/utils/some' );
201201
import someBy = require( '@stdlib/utils/some-by' );
202202
import someByRight = require( '@stdlib/utils/some-by-right' );
203-
import Stack = require( '@stdlib/utils/stack' );
204203
import tabulate = require( '@stdlib/utils/tabulate' );
205204
import tabulateBy = require( '@stdlib/utils/tabulate-by' );
206205
import thunk = require( '@stdlib/utils/thunk' );
@@ -5338,11 +5337,6 @@ interface Namespace {
53385337
*/
53395338
someByRight: typeof someByRight;
53405339

5341-
/**
5342-
* Stack
5343-
*/
5344-
Stack: typeof Stack;
5345-
53465340
/**
53475341
* Generates a frequency table.
53485342
*

lib/node_modules/@stdlib/utils/lib/index.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1660,15 +1660,6 @@ setReadOnly( utils, 'someBy', require( '@stdlib/utils/some-by' ) );
16601660
*/
16611661
setReadOnly( utils, 'someByRight', require( '@stdlib/utils/some-by-right' ) );
16621662

1663-
/**
1664-
* @name Stack
1665-
* @memberof utils
1666-
* @readonly
1667-
* @type {Function}
1668-
* @see {@link module:@stdlib/utils/stack}
1669-
*/
1670-
setReadOnly( utils, 'Stack', require( '@stdlib/utils/stack' ) );
1671-
16721663
/**
16731664
* @name tabulate
16741665
* @memberof utils

0 commit comments

Comments
 (0)