UNPKG

coversor-texto-noche-reyner

Version:

Paquete que transforma un texto a mayusculas o minusculas.

14 lines (11 loc) 342 B
function transformarTexto(texto, tipo){ if(tipo === 'mayusculas'){ return texto.toUpperCase(); }else if(tipo === 'minusculas'){ return texto.toLowerCase(); }else{ throw new Error('Tipo no valido.'); } } //Entrada a la programacion modular module.exports = transformarTexto;