You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
275 B
8 lines
275 B
11 months ago
|
// 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
|
||
|
}
|