Skip to content

Commit ccb87b6

Browse files
committed
feat: add missing exports to namespaces
--- 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 6695311 commit ccb87b6

File tree

3 files changed

+54
-0
lines changed

3 files changed

+54
-0
lines changed

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,15 @@ var ns = {};
4545
*/
4646
setReadOnly( ns, 'Function', require( '@stdlib/function/ctor' ) );
4747

48+
/**
49+
* @name thunk
50+
* @memberof ns
51+
* @readonly
52+
* @type {Function}
53+
* @see {@link module:@stdlib/function/thunk}
54+
*/
55+
setReadOnly( ns, 'thunk', require( '@stdlib/function/thunk' ) );
56+
4857
/**
4958
* @name function2string
5059
* @memberof ns

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

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,42 @@ setReadOnly( ns, 'assignIn', require( '@stdlib/object/assign-in' ) );
6363
*/
6464
setReadOnly( ns, 'Object', require( '@stdlib/object/ctor' ) );
6565

66+
/**
67+
* @name everyInBy
68+
* @memberof ns
69+
* @readonly
70+
* @type {Function}
71+
* @see {@link module:@stdlib/object/every-in-by}
72+
*/
73+
setReadOnly( ns, 'everyInBy', require( '@stdlib/object/every-in-by' ) );
74+
75+
/**
76+
* @name everyOwnBy
77+
* @memberof ns
78+
* @readonly
79+
* @type {Function}
80+
* @see {@link module:@stdlib/object/every-own-by}
81+
*/
82+
setReadOnly( ns, 'everyOwnBy', require( '@stdlib/object/every-own-by' ) );
83+
84+
/**
85+
* @name noneInBy
86+
* @memberof ns
87+
* @readonly
88+
* @type {Function}
89+
* @see {@link module:@stdlib/object/none-in-by}
90+
*/
91+
setReadOnly( ns, 'noneInBy', require( '@stdlib/object/none-in-by' ) );
92+
93+
/**
94+
* @name someInBy
95+
* @memberof ns
96+
* @readonly
97+
* @type {Function}
98+
* @see {@link module:@stdlib/object/some-in-by}
99+
*/
100+
setReadOnly( ns, 'someInBy', require( '@stdlib/object/some-in-by' ) );
101+
66102

67103
// EXPORTS //
68104

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,15 @@ setReadOnly( string, 'nextCodePointIndex', require( '@stdlib/string/next-code-po
229229
*/
230230
setReadOnly( string, 'nextGraphemeClusterBreak', require( '@stdlib/string/next-grapheme-cluster-break' ) );
231231

232+
/**
233+
* @name numCodePoints
234+
* @memberof string
235+
* @readonly
236+
* @type {Function}
237+
* @see {@link module:@stdlib/string/num-code-points}
238+
*/
239+
setReadOnly( string, 'numCodePoints', require( '@stdlib/string/num-code-points' ) );
240+
232241
/**
233242
* @name numGraphemeClusters
234243
* @memberof string

0 commit comments

Comments
 (0)