UNPKG
conversor-texto-nomada
Version:
latest (1.0.0)
1.0.0
Paquete para transformar texto en mayúsculas o minúsculas.
conversor-texto-nomada
/
index.js
12 lines
(10 loc)
•
321 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
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. Usa 'mayusculas' o 'minusculas'."
); } }
module
.
exports
= transformarTexto;