@sendbird/uikit-react-native
Version:
Sendbird UIKit for React Native: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.
12 lines • 419 B
JavaScript
const nativePermissionGranted = (stats, limitedCallback) => {
return Object.values(stats).every(result => {
if (result === 'granted') return true;
if (result === 'limited') {
limitedCallback === null || limitedCallback === void 0 ? void 0 : limitedCallback();
return true;
}
return false;
});
};
export default nativePermissionGranted;
//# sourceMappingURL=nativePermissionGranted.js.map