Skip to content

Commit

Permalink
Merge pull request #43 from eliansoutu/master
Browse files Browse the repository at this point in the history
agrego espacio para USD
  • Loading branch information
eliansoutu authored Sep 18, 2023
2 parents 9553761 + 96de305 commit 4f789a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/lbl_money.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ lbl_money <- function(x, decimales = 0, dolar = F, escala = 1, sufijo = NULL) {
accuracy = 1 / (10 ^ decimales),
big.mark = ".",
decimal.mark = ",",
prefix = ifelse(dolar, "US$", "$"),
prefix = ifelse(dolar, "US$ ", "$"),
scale = 1 / escala,
suffix = ifelse(is.null(sufijo), "", paste0(" ", sufijo))
)(x)
Expand Down

0 comments on commit 4f789a0

Please sign in to comment.