@contrail/util 1.3.3-alpha.7783621 → 1.3.3-alpha.c9174cd
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -7,11 +7,9 @@ Versioning follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
### Fixed
|
|
10
|
+
### Added
|
|
13
11
|
|
|
14
|
-
-
|
|
12
|
+
- lambda max response size constants in `@contrail/util`.
|
|
15
13
|
|
|
16
14
|
## [1.2.1] - 2026-03-25
|
|
17
15
|
|
package/lib/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from './app-util/app-util';
|
|
2
2
|
export * from './compression-util';
|
|
3
3
|
export * from './date-util/date-util';
|
|
4
|
+
export * from './lambda-util/lambda-util';
|
|
4
5
|
export * from './map-util/map-util';
|
|
5
6
|
export * from './object-util/object-util';
|
|
6
7
|
export * from './order-util/order-util';
|
package/lib/index.js
CHANGED
|
@@ -17,6 +17,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
17
17
|
__exportStar(require("./app-util/app-util"), exports);
|
|
18
18
|
__exportStar(require("./compression-util"), exports);
|
|
19
19
|
__exportStar(require("./date-util/date-util"), exports);
|
|
20
|
+
__exportStar(require("./lambda-util/lambda-util"), exports);
|
|
20
21
|
__exportStar(require("./map-util/map-util"), exports);
|
|
21
22
|
__exportStar(require("./object-util/object-util"), exports);
|
|
22
23
|
__exportStar(require("./order-util/order-util"), exports);
|
|
@@ -9,7 +9,7 @@ function mergeDeep(target, ...sources) {
|
|
|
9
9
|
if ((0, isObject_1.isObject)(target) && (0, isObject_1.isObject)(source)) {
|
|
10
10
|
for (const key in source) {
|
|
11
11
|
if ((0, isObject_1.isObject)(source[key]) && !isDate(source[key])) {
|
|
12
|
-
if (!
|
|
12
|
+
if (!target[key])
|
|
13
13
|
Object.assign(target, { [key]: {} });
|
|
14
14
|
mergeDeep(target[key], source[key]);
|
|
15
15
|
}
|