/** * This statement exports all of the functions and variables from the 'phoneNumber' module. * This allows other modules to import and use them. */ export * from './phoneNumber'; /** * This module exports all of the functions and variables from the cardNumber module. */ export * from './cardNumber'; /** * This statement exports all the named exports from the 'ip' module. * @returns All named exports from the 'ip' module. */ export * from './ip'; /** * This statement exports all of the functions and variables from the 'postalCode' module. * Any file that imports from this module will have access to all of its exported members. */ export * from './postalCode'; /** * This statement exports all the functions and variables from the 'idNumber' module. * @returns All the functions and variables from the 'idNumber' module. */ export * from './idNumber'; /** * This module exports all functions from the 'string' module. */ export * from './string'; /** * This statement exports all of the named exports from the './mac' module. * Any file that imports from this module will have access to all of the named exports * from the './mac' module. */ export * from './mac';