7 lines
114 B
JavaScript
7 lines
114 B
JavaScript
|
|
||
|
function removeZeroInicial(numero) {
|
||
|
return numero.replace(/^0+/, '');
|
||
|
}
|
||
|
|
||
|
module.exports = removeZeroInicial
|