UNPKG

react-native-story-component

Version:
12 lines 328 B
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