Helper class introducing a boolean type for specifying boolean values
(true
and false
) as option types.
Return true
if other
is either true
or false
# File lib/kramdown/options.rb, line 22 def self.===(other) FalseClass === other || TrueClass === other end