(value, type)
| 74763 | } |
| 74764 | |
| 74765 | function isEmptyValue(value, type) { |
| 74766 | if (value === undefined || value === null) { |
| 74767 | return true; |
| 74768 | } |
| 74769 | |
| 74770 | if (type === 'array' && Array.isArray(value) && !value.length) { |
| 74771 | return true; |
| 74772 | } |
| 74773 | |
| 74774 | if (isNativeStringType(type) && typeof value === 'string' && !value) { |
| 74775 | return true; |
| 74776 | } |
| 74777 | |
| 74778 | return false; |
| 74779 | } |
| 74780 | |
| 74781 | function asyncParallelArray(arr, func, callback) { |
| 74782 | var results = []; |
no test coverage detected
searching dependent graphs…