UNPKG

conversor-texto-noche

Version:

Paquete que transforma un texto a mayúsculas o minúsculas.

11 lines (10 loc) 279 B
function transformarTexto(texto, tipo){ if(tipo === 'mayusculas'){ return texto.toUpperCase(); }else if(tipo === 'minusculas'){ return texto.toLowerCase(); }else{ throw new Error('Tipo no válido.'); } } module.exports = transformarTexto;