@daimo/pay
Version:
Seamless crypto payments. Onboard users from any chain, any coin into your app with one click.
14 lines (12 loc) • 357 B
JavaScript
function detectPlatform(ua) {
// From https://dev.to/konyu/using-javascript-to-determine-whether-the-client-is-ios-or-android-4i1j
if (/android/i.test(ua)) {
return "android";
}
else if (/iPhone|iPod|iPad/.test(ua)) {
return "ios";
}
return "other";
}
export { detectPlatform };
//# sourceMappingURL=platform.js.map