import Debugger from './debugger'; const debug = new Debugger("formfields"); /** * convert a text field into an integer only text field * @param {Date|string} id The Id of the form field */ export function text_integer(id){ const element = document.getElementById(id); debug.warn("Initializing form element text_integer on ",id,element); }