-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.js
64 lines (59 loc) · 1.8 KB
/
utils.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
const {ObjectID} = require("bson");
const traverse = require('traverse');
const uuid = require('uuid')
function convertNameToTestFunction(name) {
return typeof name === 'function' ? name : _name => name === _name;
}
function stringify() {
return JSON.parse(
JSON.stringify(
arguments[0],
function (k, v) {
if (k === 'uuid') return 'uuid-v1'
if (k === 'syncUUID') return 'syncUUID'
if (
this[k] instanceof ObjectID ||
(typeof this[k] === "object" && ObjectID.isValid(this[k]))
) {
return "ObjectID";
}
if (typeof this[k] === "string" && this[k].length === 24 && ObjectID.isValid(this[k])) {
return "ObjectID";
}
if (k === 'chain' || k === 'condition') {
let result = stringify(JSON.parse(this[k]));
result = JSON.stringify(result);
return result;
}
if (uuid.validate(this[k]))
return "UUID"
return v;
},
4
)
);
}
function clearUndefined(obj) {
const result = traverse(obj).map(function (node) {
const {key, path, isRoot, parent, isLeaf} = this;
if (this.node_ instanceof ObjectID || (typeof this.node_ === 'object' && ObjectID.isValid(this.node_))) {
this.update(this.node_, true);
return this.block();
}
if (this.node instanceof Buffer) {
this.update(this.node_, true);
return this.block();
}
if (!parent) return;
if (isLeaf && node === undefined && !Array.isArray(parent)) {
this.delete();
}
})
return result;
}
const util = require('util');
const inspect = (obj) => util.inspect(obj, {depth: 1});
exports.clearUndefined = clearUndefined;
exports.convertNameToTestFunction = convertNameToTestFunction;
exports.stringify = stringify;
exports.inspect = inspect;