class Nokogiri::XML::NodeSet

def before(datum)

Insert +datum+ before the first Node in this NodeSet
##
def before(datum)
  first.before(datum)
end