(it)
| 2663 | |
| 2664 | // helpers |
| 2665 | var isPromise = function(it){ |
| 2666 | return isObject(it) && (useNative ? classof(it) == 'Promise' : RECORD in it); |
| 2667 | }; |
| 2668 | var sameConstructor = function(a, b){ |
| 2669 | // library wrapper special case |
| 2670 | if(LIBRARY && a === P && b === Wrapper)return true; |