14 lines
239 B
Go
14 lines
239 B
Go
|
package helpers
|
||
|
|
||
|
import "runtime"
|
||
|
|
||
|
// IsMobile returns true if current platform related to mobile devices (phones, tablets).
|
||
|
func IsMobile() bool {
|
||
|
switch runtime.GOOS {
|
||
|
case "android", "ios":
|
||
|
return true
|
||
|
default:
|
||
|
return false
|
||
|
}
|
||
|
}
|