strapi/packages/core/utils/lib/object-formatting.js
2021-04-29 12:03:54 +02:00

10 lines
172 B
JavaScript

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