UNPKG

@tcmfiles/react-native-dnd-board

Version:
12 lines (8 loc) 265 B
import { Dimensions } from 'react-native'; export default class Utils { static deviceWidth = Dimensions.get('window').width; static deviceHeight = Dimensions.get('window').height; static isFunction = func => { return typeof func === 'function'; }; }