Module: Voom::Presenters::Helpers::Redact

Included in:
Voom::Presenters::Helpers
Defined in:
lib/voom/presenters/helpers/redact.rb

Instance Method Summary collapse

Instance Method Details

#redact(string, last_chars = 4) ⇒ Object



6
7
8
9
# File 'lib/voom/presenters/helpers/redact.rb', line 6

def redact(string, last_chars = 4)
  return "" unless string
  "• • • #{string.split(//).last(last_chars).join}"
end