-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.js
81 lines (72 loc) · 1.59 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
'use strict';
const typeOf = require('kind-of');
const omitEmpty = (obj, options) => {
let omitZero = options ? options.omitZero : false;
let omit = value => {
if (Array.isArray(value)) {
value = value.map(v => omit(v)).filter(v => !isEmpty(v, omitZero));
}
if (typeOf(value) === 'object') {
let result = {};
for (let key of Object.keys(value)) {
let val = omit(value[key]);
if (val !== void 0) {
result[key] = val;
}
}
value = result;
}
if (!isEmpty(value, omitZero)) {
return value;
}
};
let res = omit(obj);
if (res === void 0) {
return typeOf(obj) === 'object' ? {} : res;
}
return res;
};
function isEmpty(value, omitZero) {
switch (typeOf(value)) {
case 'null':
case 'undefined':
return true;
case 'boolean':
case 'function':
case 'date':
case 'regexp':
return false;
case 'string':
case 'arguments':
return value.length === 0;
case 'file':
case 'map':
case 'set':
return value.size === 0;
case 'number':
return omitZero ? value === 0 : false;
case 'error':
return value.message === '';
case 'array':
for (let ele of value) {
if (!isEmpty(ele, omitZero)) {
return false;
}
}
return true;
case 'object':
for (let key of Object.keys(value)) {
if (!isEmpty(value[key], omitZero)) {
return false;
}
}
return true;
default: {
return true;
}
}
}
/**
* Expose `omitEmpty`
*/
module.exports = omitEmpty;