UNPKG

conversor-texto-noche-yorhs

Version:

Paquete que transforma un texto

11 lines (10 loc) 290 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