Skip to content

Commit ff781c2

Browse files
committed
Auto-generated commit
1 parent f052f85 commit ff781c2

File tree

15 files changed

+18
-756
lines changed

15 files changed

+18
-756
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2025-12-17)
7+
## Unreleased (2025-12-21)
88

99
<section class="features">
1010

@@ -36,6 +36,16 @@
3636

3737
### BREAKING CHANGES
3838

39+
- [`647a87b`](https://github.com/stdlib-js/stdlib/commit/647a87b0e43b612ec9693158c3f3877a017e494f): remove `utils/uncapitalize-keys`
40+
41+
- To migrate, users should update their require/import paths to use
42+
`@stdlib/object/uncapitalize-keys` which provides the same API and implementation.
43+
44+
- [`7702fd2`](https://github.com/stdlib-js/stdlib/commit/7702fd24a0b59de09f253664d90839889a0cc390): remove `uncapitalizeKeys`
45+
46+
- To migrate, users should access the same symbol via the
47+
`@stdlib/object` namespace.
48+
3949
- [`ce09e9e`](https://github.com/stdlib-js/stdlib/commit/ce09e9e07dec47bea292ae246dc7f7f97b2c55ff): remove `utils/capitalize-keys`
4050

4151
- To migrate, users should update their require/import paths to use
@@ -222,6 +232,9 @@ A total of 24 issues were closed in this release:
222232

223233
<details>
224234

235+
- [`647a87b`](https://github.com/stdlib-js/stdlib/commit/647a87b0e43b612ec9693158c3f3877a017e494f) - **remove:** remove `utils/uncapitalize-keys` _(by Neeraj Pathak)_
236+
- [`b7e501d`](https://github.com/stdlib-js/stdlib/commit/b7e501da67a62621cecdf8ca98125c99667a06d5) - **refactor:** update paths _(by Neeraj Pathak)_
237+
- [`7702fd2`](https://github.com/stdlib-js/stdlib/commit/7702fd24a0b59de09f253664d90839889a0cc390) - **remove:** remove `uncapitalizeKeys` from namespace _(by Neeraj Pathak)_
225238
- [`2ea832b`](https://github.com/stdlib-js/stdlib/commit/2ea832bac1694a9a9baa302603e7e08e24130f1b) - **chore:** fix JavaScript lint errors [(#9039)](https://github.com/stdlib-js/stdlib/pull/9039) _(by 0x00000F, Athan Reines)_
226239
- [`958995c`](https://github.com/stdlib-js/stdlib/commit/958995cc4c46a48aa3ecbce3e560d45944f823e7) - **docs:** update namespace table of contents [(#9076)](https://github.com/stdlib-js/stdlib/pull/9076) _(by stdlib-bot)_
227240
- [`ce09e9e`](https://github.com/stdlib-js/stdlib/commit/ce09e9e07dec47bea292ae246dc7f7f97b2c55ff) - **remove:** remove `utils/capitalize-keys` _(by Neeraj Pathak)_

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -442,8 +442,8 @@ Copyright &copy; 2016-2025. The Stdlib [Authors][stdlib-authors].
442442
443443
-->
444444

445-
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
446-
[chat-url]: https://app.gitter.im/#/room/#stdlib-js_stdlib:gitter.im
445+
[chat-image]: https://img.shields.io/badge/zulip-join_chat-brightgreen.svg
446+
[chat-url]: https://stdlib.zulipchat.com
447447

448448
[stdlib]: https://github.com/stdlib-js/stdlib
449449

docs/types/index.d.ts

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,6 @@ import trythen = require( './../../try-then' );
209209
import typemax = require( './../../type-max' );
210210
import typemin = require( './../../type-min' );
211211
import typeOf = require( './../../type-of' );
212-
import uncapitalizeKeys = require( './../../uncapitalize-keys' );
213212
import uncurry = require( './../../uncurry' );
214213
import uncurryRight = require( './../../uncurry-right' );
215214
import unshift = require( './../../unshift' );
@@ -5602,28 +5601,6 @@ interface Namespace {
56025601
*/
56035602
typeOf: typeof typeOf;
56045603

5605-
/**
5606-
* Converts the first letter of each object key to lowercase.
5607-
*
5608-
* ## Notes
5609-
*
5610-
* - The function only transforms own properties. Hence, the function does not transform inherited properties.
5611-
* - The function shallow copies key values.
5612-
*
5613-
* @param obj - source object
5614-
* @returns new object
5615-
*
5616-
* @example
5617-
* var obj1 = {
5618-
* 'AA': 1,
5619-
* 'BB': 2
5620-
* };
5621-
*
5622-
* var obj2 = ns.uncapitalizeKeys( obj1 );
5623-
* // returns { 'aA': 1, 'bB': 2 }
5624-
*/
5625-
uncapitalizeKeys: typeof uncapitalizeKeys;
5626-
56275604
/**
56285605
* Transforms a curried function into a function invoked with multiple arguments.
56295606
*

lib/index.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1741,15 +1741,6 @@ setReadOnly( utils, 'typemin', require( './../type-min' ) );
17411741
*/
17421742
setReadOnly( utils, 'typeOf', require( './../type-of' ) );
17431743

1744-
/**
1745-
* @name uncapitalizeKeys
1746-
* @memberof utils
1747-
* @readonly
1748-
* @type {Function}
1749-
* @see {@link module:@stdlib/utils/uncapitalize-keys}
1750-
*/
1751-
setReadOnly( utils, 'uncapitalizeKeys', require( './../uncapitalize-keys' ) );
1752-
17531744
/**
17541745
* @name uncurry
17551746
* @memberof utils

lowercase-keys/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ console.dir( obj2 );
115115

116116
## See Also
117117

118-
- <span class="package-name">[`@stdlib/utils/uncapitalize-keys`][@stdlib/utils/uncapitalize-keys]</span><span class="delimiter">: </span><span class="description">convert the first letter of each object key to lowercase.</span>
118+
- <span class="package-name">[`@stdlib/object/uncapitalize-keys`][@stdlib/object/uncapitalize-keys]</span><span class="delimiter">: </span><span class="description">convert the first letter of each object key to lowercase.</span>
119119
- <span class="package-name">[`@stdlib/utils/uppercase-keys`][@stdlib/utils/uppercase-keys]</span><span class="delimiter">: </span><span class="description">convert each object key to uppercase.</span>
120120

121121
</section>
@@ -128,7 +128,7 @@ console.dir( obj2 );
128128

129129
<!-- <related-links> -->
130130

131-
[@stdlib/utils/uncapitalize-keys]: https://github.com/stdlib-js/utils/tree/main/uncapitalize-keys
131+
[@stdlib/object/uncapitalize-keys]: https://github.com/stdlib-js/object-uncapitalize-keys
132132

133133
[@stdlib/utils/uppercase-keys]: https://github.com/stdlib-js/utils/tree/main/uppercase-keys
134134

uncapitalize-keys/README.md

Lines changed: 0 additions & 139 deletions
This file was deleted.

uncapitalize-keys/benchmark/benchmark.js

Lines changed: 0 additions & 57 deletions
This file was deleted.

uncapitalize-keys/docs/repl.txt

Lines changed: 0 additions & 28 deletions
This file was deleted.

uncapitalize-keys/docs/types/index.d.ts

Lines changed: 0 additions & 46 deletions
This file was deleted.

0 commit comments

Comments
 (0)