UNPKG

stuffs

Version:

Some useful stuffs packed to here.

11 lines 218 B
/** * * @param {Promise|Function|any} anything */ module.exports = function isThenable(anything) { try { return !!anything && typeof anything.then == "function"; } catch { return false; } }