Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/password_strength_meter.rb

Instance Method Summary collapse

Instance Method Details

#each_char_with_indexObject



87
88
89
90
91
92
93
# File 'lib/password_strength_meter.rb', line 87

def each_char_with_index
  i = 0
  split(//).each do |c|
    yield i, c
    i += 1
  end
end