class ChefConfig::PathHelper

def self.printable?(string)

def self.printable?(string)
  # returns true if string is free of non-printable characters (escape sequences)
  # this returns false for whitespace escape sequences as well, e.g. \n\t
  if /[^[:print:]]/.match?(string)
    false
  else
    true
  end
end