UNPKG

custom-react-native-alert

Version:

A customizable global alert system for React Native using context and modal.

5 lines (4 loc) 176 B
// Type guard to check if a button is an object-style button export function isObjectButton(btn) { return btn && typeof btn === 'object' && typeof btn.text === 'string'; }