UNPKG

detox

Version:

E2E tests and automation for mobile

13 lines (10 loc) 220 B
function isPromise(value) { return Promise.resolve(value) === value; } function isPromiseLike(value) { return value ? typeof value.then === 'function' : false; } module.exports = { isPromise, isPromiseLike, };