tornar a entrada maior se o texto não se encaixar

function resizeInput(inputElement) {
  inputElement.style.width = inputElement.value.length + "ch";
}
NachooCh