* Returns true if a where clause is empty, even with Symbols * * @param {object} obj * @returns {boolean} * @private
(obj)
| 540 | * @private |
| 541 | */ |
| 542 | function isWhereEmpty(obj) { |
| 543 | return !!obj && _.isEmpty(obj) && getOperators(obj).length === 0; |
| 544 | } |
| 545 | exports.isWhereEmpty = isWhereEmpty; |
| 546 | |
| 547 | /** |
nothing calls this directly
no test coverage detected