lambda-toolkit 0.0.8-beta → 0.0.9-beta
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/dist/index.js +10 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2131,11 +2131,13 @@ module.exports = ( obj, props ) => Object.fromEntries( Object.entries( obj ).fil
|
|
|
2131
2131
|
|
|
2132
2132
|
const camelize = __webpack_require__( 8256 );
|
|
2133
2133
|
const filterProps = __webpack_require__( 6451 );
|
|
2134
|
+
const removeEmptyArrays = __webpack_require__( 2047 );
|
|
2134
2135
|
const snakelize = __webpack_require__( 7572 );
|
|
2135
2136
|
|
|
2136
2137
|
module.exports = {
|
|
2137
2138
|
camelize,
|
|
2138
2139
|
filterProps,
|
|
2140
|
+
removeEmptyArrays,
|
|
2139
2141
|
snakelize
|
|
2140
2142
|
};
|
|
2141
2143
|
|
|
@@ -2154,6 +2156,14 @@ module.exports = obj =>
|
|
|
2154
2156
|
!( obj instanceof Date );
|
|
2155
2157
|
|
|
2156
2158
|
|
|
2159
|
+
/***/ }),
|
|
2160
|
+
|
|
2161
|
+
/***/ 2047:
|
|
2162
|
+
/***/ ((module) => {
|
|
2163
|
+
|
|
2164
|
+
module.exports = o => Object.fromEntries( Object.entries( o ).filter( ( [ , v ] ) => !Array.isArray( v ) || v.length > 0 ) );
|
|
2165
|
+
|
|
2166
|
+
|
|
2157
2167
|
/***/ }),
|
|
2158
2168
|
|
|
2159
2169
|
/***/ 7572:
|