Files
bsky-social-app/src/alf/util/platform.ts
T
Eric Bailey 9dd0722128 Cleanup
2023-12-18 21:33:01 -06:00

26 lines
392 B
TypeScript

import {Platform} from 'react-native'
export function web(value: any) {
return Platform.select({
web: value,
})
}
export function ios(value: any) {
return Platform.select({
ios: value,
})
}
export function android(value: any) {
return Platform.select({
android: value,
})
}
export function native(value: any) {
return Platform.select({
native: value,
})
}