Skip to content

Commit 23e8953

Browse files
committed
remove: remove anyHasOwnProp, anyHasProp, anyIsEntry, anyIsEntryIn from namespace
This commit removes the `anyHasOwnProp`, `anyHasProp`, `anyIsEntry` , and `anyIsEntryIn` symbols from the `@stdlib/array/base/assert` namespace due to a package migration. BREAKING CHANGE: remove `anyHasOwnProp`, `anyHasProp`, `anyIsEntry`, `anyIsEntryIn` To migrate, users should access the same symbols via the `@stdlib/array/base` 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent cc20b2d commit 23e8953

File tree

1 file changed

+0
-36
lines changed
  • lib/node_modules/@stdlib/array/base/assert/lib

1 file changed

+0
-36
lines changed

lib/node_modules/@stdlib/array/base/assert/lib/index.js

Lines changed: 0 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -36,42 +36,6 @@ var setReadOnly = require( '@stdlib/utils/define-read-only-property' );
3636
*/
3737
var ns = {};
3838

39-
/**
40-
* @name anyHasOwnProp
41-
* @memberof ns
42-
* @readonly
43-
* @type {Function}
44-
* @see {@link module:@stdlib/array/base/assert/any-has-own-property}
45-
*/
46-
setReadOnly( ns, 'anyHasOwnProp', require( '@stdlib/array/base/assert/any-has-own-property' ) );
47-
48-
/**
49-
* @name anyHasProp
50-
* @memberof ns
51-
* @readonly
52-
* @type {Function}
53-
* @see {@link module:@stdlib/array/base/assert/any-has-property}
54-
*/
55-
setReadOnly( ns, 'anyHasProp', require( '@stdlib/array/base/assert/any-has-property' ) );
56-
57-
/**
58-
* @name anyIsEntry
59-
* @memberof ns
60-
* @readonly
61-
* @type {Function}
62-
* @see {@link module:@stdlib/array/base/assert/any-is-entry}
63-
*/
64-
setReadOnly( ns, 'anyIsEntry', require( '@stdlib/array/base/assert/any-is-entry' ) );
65-
66-
/**
67-
* @name anyIsEntryIn
68-
* @memberof ns
69-
* @readonly
70-
* @type {Function}
71-
* @see {@link module:@stdlib/array/base/assert/any-is-entry-in}
72-
*/
73-
setReadOnly( ns, 'anyIsEntryIn', require( '@stdlib/array/base/assert/any-is-entry-in' ) );
74-
7539
/**
7640
* @name contains
7741
* @memberof ns

0 commit comments

Comments
 (0)