Skip to content

Commit 0bc9823

Browse files
committed
feat: add missing exports to utils 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 98b00e4 commit 0bc9823

1 file changed

Lines changed: 45 additions & 0 deletions

File tree

  • lib/node_modules/@stdlib/utils/lib

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

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,24 @@ setReadOnly( utils, 'anyBy', require( '@stdlib/utils/any-by' ) );
6767
*/
6868
setReadOnly( utils, 'anyByRight', require( '@stdlib/utils/any-by-right' ) );
6969

70+
/**
71+
* @name anyInBy
72+
* @memberof utils
73+
* @readonly
74+
* @type {Function}
75+
* @see {@link module:@stdlib/utils/any-in-by}
76+
*/
77+
setReadOnly( utils, 'anyInBy', require( '@stdlib/utils/any-in-by' ) );
78+
79+
/**
80+
* @name anyOwnBy
81+
* @memberof utils
82+
* @readonly
83+
* @type {Function}
84+
* @see {@link module:@stdlib/utils/any-own-by}
85+
*/
86+
setReadOnly( utils, 'anyOwnBy', require( '@stdlib/utils/any-own-by' ) );
87+
7088
/**
7189
* @name append
7290
* @memberof utils
@@ -1210,6 +1228,15 @@ setReadOnly( utils, 'noneBy', require( '@stdlib/utils/none-by' ) );
12101228
*/
12111229
setReadOnly( utils, 'noneByRight', require( '@stdlib/utils/none-by-right' ) );
12121230

1231+
/**
1232+
* @name noneOwnBy
1233+
* @memberof utils
1234+
* @readonly
1235+
* @type {Function}
1236+
* @see {@link module:@stdlib/utils/none-own-by}
1237+
*/
1238+
setReadOnly( utils, 'noneOwnBy', require( '@stdlib/utils/none-own-by' ) );
1239+
12131240
/**
12141241
* @name nonEnumerableProperties
12151242
* @memberof utils
@@ -1363,6 +1390,15 @@ setReadOnly( utils, 'parallel', require( '@stdlib/utils/parallel' ) );
13631390
*/
13641391
setReadOnly( utils, 'parseJSON', require( '@stdlib/utils/parse-json' ) );
13651392

1393+
/**
1394+
* @name parseNDJSON
1395+
* @memberof utils
1396+
* @readonly
1397+
* @type {Function}
1398+
* @see {@link module:@stdlib/utils/parse-ndjson}
1399+
*/
1400+
setReadOnly( utils, 'parseNDJSON', require( '@stdlib/utils/parse-ndjson' ) );
1401+
13661402
/**
13671403
* @name pick
13681404
* @memberof utils
@@ -1660,6 +1696,15 @@ setReadOnly( utils, 'someBy', require( '@stdlib/utils/some-by' ) );
16601696
*/
16611697
setReadOnly( utils, 'someByRight', require( '@stdlib/utils/some-by-right' ) );
16621698

1699+
/**
1700+
* @name someOwnBy
1701+
* @memberof utils
1702+
* @readonly
1703+
* @type {Function}
1704+
* @see {@link module:@stdlib/utils/some-own-by}
1705+
*/
1706+
setReadOnly( utils, 'someOwnBy', require( '@stdlib/utils/some-own-by' ) );
1707+
16631708
/**
16641709
* @name tabulate
16651710
* @memberof utils

0 commit comments

Comments
 (0)