can-promise.js 275 B

1234567
  1. // can-promise has a crash in some versions of react native that dont have
  2. // standard global objects
  3. // https://github.com/soldair/node-qrcode/issues/157
  4. module.exports = function () {
  5. return typeof Promise === 'function' && Promise.prototype && Promise.prototype.then
  6. }