* Returns true if a where clause is empty, even with Symbols * * @param {object} obj * @returns {boolean} * @private
(obj)
| 527 | * @private |
| 528 | */ |
| 529 | function isWhereEmpty(obj) { |
| 530 | return !!obj && _.isEmpty(obj) && getOperators(obj).length === 0; |
| 531 | } |
| 532 | exports.isWhereEmpty = isWhereEmpty; |
| 533 | |
| 534 | /** |
nothing calls this directly
no test coverage detected