UNPKG
datoit-utils
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
Shared utilities for the Datoit packages
datoit.com
datoit/datoit
datoit-utils
/
lib
/
object-formatting.js
10 lines
(6 loc)
•
172 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
;
const
_ =
require
(
'lodash'
);
const
removeUndefined
= obj => _.
pickBy
(obj,
value
=>
typeof
value !==
'undefined'
);
module
.
exports
= { removeUndefined, };