/** * This statement exports all of the functions and variables from the 'number' module. * Any file that imports from this module will have access to all of the exported items. */ export * from './number'; /** * This module exports all functions from the cardNumber module. */ export * from './cardNumber'; export * from './date';