* getComplexKeys * * @param {object} obj * @returns {Array } All keys including operators * @private
(obj)
| 516 | * @private |
| 517 | */ |
| 518 | function getComplexKeys(obj) { |
| 519 | return getOperators(obj).concat(Object.keys(obj)); |
| 520 | } |
| 521 | exports.getComplexKeys = getComplexKeys; |
| 522 | |
| 523 | /** |
no test coverage detected