blob: 8f64f85804a7bc502cb1f410582f2f1d28986e43 [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001'use strict';
2module.exports = x => (
3 x instanceof Promise ||
4 (
5 x !== null &&
6 typeof x === 'object' &&
7 typeof x.then === 'function' &&
8 typeof x.catch === 'function'
9 )
10);