UNPKG

@wordpress/element

Version:
22 lines (19 loc) 380 B
/** * External dependencies */ import { Platform as OriginalPlatform } from 'react-native'; const Platform = { ...OriginalPlatform, OS: 'native', select: ( spec ) => { if ( 'android' in spec ) { return spec.android; } else if ( 'native' in spec ) { return spec.native; } return spec.default; }, isNative: true, isAndroid: true, }; export default Platform;