// JavaScript utility functions for web development
// Authentication and validation helpers
/**
* Validates an email address format
* @param {string} email - The email to validate
* @returns {boolean} - True if valid email format
*/
/**
* Generates a random token for authentication
* @param {number} length - Token length
* @returns {string} - Random token string
*/
module.exports = ;