sid-address-verification-react-native
Version:
A sourceID react native package for address verification
17 lines (16 loc) • 636 B
JavaScript
// Google Places API configuration
const GOOGLE_PLACES_BASE_URL = 'https://maps.googleapis.com/maps/api/place';
const GOOGLE_PLACES_KEY = 'AIzaSyD61uSS05BewaP-7NZ5LNDSnQ_D0yv-_Dk';
// Simple utility functions
const debounce = (func, delay) => {
let timeoutId;
return (...args) => {
clearTimeout(timeoutId);
timeoutId = setTimeout(() => func.apply(null, args), delay);
};
};
const generateSessionToken = () => {
return `session_${Date.now()}_${Math.random().toString(36).substr(2, 9)}`;
};
export { GOOGLE_PLACES_BASE_URL, GOOGLE_PLACES_KEY, debounce, generateSessionToken };
//# sourceMappingURL=helper_functions.js.map