Skip to content

Commit 4f59553

Browse files
committed
remove: remove LinkedList from namespace
BREAKING CHANGE: remove `LinkedList` 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 5c1514b commit 4f59553

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
@@ -125,7 +125,6 @@ import keyBy = require( '@stdlib/utils/key-by' );
125125
import keyByRight = require( '@stdlib/utils/key-by-right' );
126126
import objectKeys = require( '@stdlib/utils/keys' );
127127
import keysIn = require( '@stdlib/utils/keys-in' );
128-
import LinkedList = require( '@stdlib/utils/linked-list' );
129128
import lowercaseKeys = require( '@stdlib/utils/lowercase-keys' );
130129
import map = require( '@stdlib/utils/map' );
131130
import mapArguments = require( '@stdlib/utils/map-arguments' );
@@ -3150,11 +3149,6 @@ interface Namespace {
31503149
*/
31513150
keysIn: typeof keysIn;
31523151

3153-
/**
3154-
* List node.
3155-
*/
3156-
LinkedList: typeof LinkedList;
3157-
31583152
/**
31593153
* Converts each object key to lowercase.
31603154
*

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

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -985,15 +985,6 @@ setReadOnly( utils, 'objectKeys', require( '@stdlib/utils/keys' ) );
985985
*/
986986
setReadOnly( utils, 'keysIn', require( '@stdlib/utils/keys-in' ) );
987987

988-
/**
989-
* @name LinkedList
990-
* @memberof utils
991-
* @readonly
992-
* @type {Function}
993-
* @see {@link module:@stdlib/utils/linked-list}
994-
*/
995-
setReadOnly( utils, 'LinkedList', require( '@stdlib/utils/linked-list' ) );
996-
997988
/**
998989
* @name lowercaseKeys
999990
* @memberof utils

0 commit comments

Comments
 (0)