module Pry::Helpers::Text

def no_color

Returns:
  • (void) -

Other tags:
    Yield: -
def no_color
  boolean = Pry.config.color
  Pry.config.color = false
  yield
ensure
  Pry.config.color = boolean
end