UNPKG

npmjs-mayus-minus

Version:

Transformar mayusculas a minusculas

11 lines (10 loc) 332 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, Ingresa 'minusculas' o 'mayusculas'."); } } module.exports = transformarTexto;