* getComplexSize * * @param {object|Array} obj * @returns {number} Length of object properties including operators if obj is array returns its length * @private
(obj)
| 528 | * @private |
| 529 | */ |
| 530 | function getComplexSize(obj) { |
| 531 | return Array.isArray(obj) ? obj.length : getComplexKeys(obj).length; |
| 532 | } |
| 533 | exports.getComplexSize = getComplexSize; |
| 534 | |
| 535 | /** |
nothing calls this directly
no test coverage detected