humanize
humanize copied to clipboard
Possible to remove 'and' joining large numbers?
I noticed the same issue here #14, but I don't see a way to override this. According to the code below this doesn't seem possible anymore. Am I missing something?
def conjunction(parts, use_and)
return '' if parts.empty?
use_and ? ' and' : ','
end