blob: 8f64f85804a7bc502cb1f410582f2f1d28986e43 [file] [log] [blame]
'use strict';
module.exports = x => (
x instanceof Promise ||
(
x !== null &&
typeof x === 'object' &&
typeof x.then === 'function' &&
typeof x.catch === 'function'
)
);