(obj)
| 733 | |
| 734 | |
| 735 | function isPromiseLike(obj) { |
| 736 | return obj && isFunction(obj.then); |
| 737 | } |
| 738 | |
| 739 | |
| 740 | var TYPED_ARRAY_REGEXP = /^\[object (Uint8(Clamped)?)|(Uint16)|(Uint32)|(Int8)|(Int16)|(Int32)|(Float(32)|(64))Array\]$/; |
no test coverage detected