function removeZeroInicial(numero) {
    return numero.replace(/^0+/, '');
}

module.exports = removeZeroInicial