(val)
| 82 | } |
| 83 | |
| 84 | function isPromise (val) { |
| 85 | return ( |
| 86 | isDef(val) && |
| 87 | typeof val.then === 'function' && |
| 88 | typeof val.catch === 'function' |
| 89 | ) |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * Convert a value to a string that is actually rendered. |
no test coverage detected