UNPKG

datoit-utils

Version:

Shared utilities for the Datoit packages

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