UNPKG

react-native-security-suite

Version:

Comprehensive security suite for React Native apps - Root/Jailbreak detection, SSL pinning, encryption, secure storage, screenshot protection, and network monitoring

18 lines (17 loc) 284 B
"use strict"; export const isJsonString = value => { try { JSON.parse(value); } catch (e) { return false; } return true; }; export const jsonParse = value => { try { return JSON.parse(value); } catch { return {}; } }; //# sourceMappingURL=helpers.js.map