/** * This module exports all of the functions and variables from the postalCode module. * This allows for easy importing of all postalCode functionality from a single import statement. */ 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 of the functions and variables from the cardNumber module. */ export * from './cardNumber'; /** * This statement exports all of the functions and variables from the 'telephone' module. * When imported into another module, all of the exported functions and variables can be accessed * using the 'import' keyword followed by the name of the module. */ export * from './telephone';