revere.dev/safelock/dashboard/node_modules/qrcode/lib/can-promise.js

8 lines
275 B
JavaScript
Raw Normal View History

2024-07-01 21:55:25 +02:00
// 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
}