1import { Platform } from 'react-native';
2
3/**
4 * @param supportedPlatforms empty array means all platforms are supported
5 */
6export function isCurrentPlatformSupported(supportedPlatforms: string[] = []): boolean {
7  return supportedPlatforms.length === 0 || supportedPlatforms.includes(Platform.OS);
8}
9