function resetTextNode(el, textswap){
if(!(el instanceof HTMLElement)){
throw new TypeError('el must be instanceof HTMLElement');
}
if(!textswap){
return 0;
}
( Array.prototype.slice.call(( el.childNodes || [])).filter(function(v){ return v.nodeName == '#text' }).pop() || {} ).nodeValue = textswap;
}