function transformarTexto (texto, tipo) {
if (tipo === 'mayusculas') {
return texto.toUpperCase();
}else if (tipo === 'minusculas') {
return texto.toLowerCase();
}else {
throw new Error("Tipo no valido, Ingresa 'minusculas' o 'mayusculas'.");
}
}
module.exports = transformarTexto;