* getComplexKeys * * @param {object} obj * @returns {Array<string|symbol>} All keys including operators * @private
(obj)
| 503 | * @private |
| 504 | */ |
| 505 | function getComplexKeys(obj) { |
| 506 | return getOperators(obj).concat(Object.keys(obj)); |
| 507 | } |
| 508 | exports.getComplexKeys = getComplexKeys; |
| 509 | |
| 510 | /** |
no test coverage detected