Module: PagerTree::Integrations::ApplicationHelper

Defined in:
app/helpers/pager_tree/integrations/application_helper.rb

Instance Method Summary collapse

Instance Method Details

#mask(string, all_but = 4, char = "*") ⇒ Object



4
5
6
# File 'app/helpers/pager_tree/integrations/application_helper.rb', line 4

def mask(string, all_but = 4, char = "*")
  string&.gsub(/.(?=.{#{all_but}})/, char)
end