Hacer que la entrada sea más grande si el texto no se ajusta

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