(obj)
| 649 | |
| 650 | // Delete empty fields from result objects |
| 651 | function clean(obj) { |
| 652 | for (var prop in obj) if (obj[prop] == null) delete obj[prop]; |
| 653 | return obj; |
| 654 | } |
| 655 | function maybeSet(obj, prop, val) { |
| 656 | if (val != null) obj[prop] = val; |
| 657 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…