module OpenStax::Utilities::Helpers::Misc

Public Instance Methods

tf_to_yn(bool, options={}) click to toggle source
# File lib/openstax/utilities/helpers/misc.rb, line 4
def tf_to_yn(bool, options={})
  bool ? "Yes" : "No"
end