$.text() feature request

$.text() feature request

I think it is nice to have wrapper for  document.createTextNode('text').
It can be 
$.text('text')
or even
$('"text"')

My current use case:
var label = image.after(document.createTextNode('text'));
will be
var label = image.after($.text('text'));