UNPKG

freerasp-react-native

Version:

React Native plugin for improving app security and threat monitoring on Android and iOS mobile devices.

8 lines 260 B
import { Threat } from './threat'; export const getThreatCount = () => { return Threat.getValues().length; }; export const itemsHaveType = (data, desidedType) => { return data.every(item => typeof item === desidedType); }; //# sourceMappingURL=utils.js.map