IB-AR-Neural-Style-Transfers / artficial.api / node_modules / is-promise / index.js
index.js
Raw
module.exports = isPromise;
module.exports.default = isPromise;

function isPromise(obj) {
  return !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function';
}