react-native-story-component
Version:
Story component for React Native.
14 lines (11 loc) • 311 B
text/typescript
export const isNullOrWhitespace = (input: any): boolean => {
if (typeof input === 'undefined' || input == null) return true;
return input.toString().replace(/\s/g, '').length < 1;
};
export const isUrl = (string: string) => {
try {
return !!new URL(string);
} catch (e) {
return false;
}
};