UNPKG

custom-react-native-stories

Version:
6 lines (4 loc) 175 B
export function isNullOrWhitespace(input: any) { if (typeof input === 'undefined' || input == null) return true; return input.toString().replace(/\s/g, '').length < 1; }