strapi/packages/core/utils/lib/object-formatting.js
2022-08-11 10:20:49 +02:00

10 lines
176 B
JavaScript

'use strict';
const _ = require('lodash');
const removeUndefined = (obj) => _.pickBy(obj, (value) => typeof value !== 'undefined');
module.exports = {
removeUndefined,
};