Method: IfStatement.read

Defined in:
lib/if_statement.rb

.read(identifier) ⇒ Object

reads the current value of identifier



34
35
36
37
# File 'lib/if_statement.rb', line 34

def read identifier
  value = features[identifier]
  value.nil? ? false : value
end