react-native-story-component
Version:
Story component for React Native.
12 lines • 328 B
JavaScript
export const isNullOrWhitespace = input => {
if (typeof input === 'undefined' || input == null) return true;
return input.toString().replace(/\s/g, '').length < 1;
};
export const isUrl = string => {
try {
return !!new URL(string);
} catch (e) {
return false;
}
};
//# sourceMappingURL=ValidationHelpers.js.map