Files
wdi-dashboard/node_modules/@chakra-ui/object-utils/dist/chunk-R3DH46PF.mjs

14 lines
216 B
JavaScript
Raw Normal View History

2024-08-16 15:06:52 +05:30
// src/compact.ts
function compact(object) {
const clone = Object.assign({}, object);
for (let key in clone) {
if (clone[key] === void 0)
delete clone[key];
}
return clone;
}
export {
compact
};