/** * 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 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'; /** * 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'; /** * This module exports all functions from the 'string' module. */ export * from './string'; /** * This statement exports all the named exports from the 'ip' module. * @returns All named exports from the 'ip' module. */ export * from './ip'; export * from "./number";