UNPKG

react-grecaptcha-v3

Version:

Google Recaptcha V3 for React.js based application. Keep website performance high while prioritizing security.

10 lines (9 loc) 271 B
import { queueKey } from './global/globals'; const unsubscribeEvent = (item) => { const callbacks = window[queueKey] || []; const index = callbacks.indexOf(item); if (index > -1) { callbacks.splice(index, 1); } }; export default unsubscribeEvent;