strapi/packages/core/utils/lib/object-formatting.js

10 lines
176 B
JavaScript
Raw Normal View History

'use strict';
const _ = require('lodash');
2022-08-08 23:33:39 +02:00
const removeUndefined = (obj) => _.pickBy(obj, (value) => typeof value !== 'undefined');
module.exports = {
removeUndefined,
};