node-qrcode-lite/lib/can-promise.js
2018-11-05 10:06:00 -08:00

7 lines
275 B
JavaScript

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