UNPKG

@emailjs/browser

Version:

Official EmailJS SDK for browsers

9 lines (8 loc) 277 B
export const validateBlockListParams = (list, watchVariable) => { if (!Array.isArray(list)) { throw 'The BlockList list has to be an array'; } if (typeof watchVariable !== 'string') { throw 'The BlockList watchVariable has to be a string'; } };