# File lib/core/facets/proc/wrap.rb, line 13
  def self.wrap(arg)
    Proc === arg ? arg : Proc.new{ arg }
  end