strapi/packages/strapi-utils/lib/objectFormatting.js
Pierre Noël 20aedc0e68 refactor
Signed-off-by: Pierre Noël <petersg83@gmail.com>
2020-05-15 17:15:24 +02:00

10 lines
172 B
JavaScript

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