Repository URL to install this package:
|
Version:
1.0.7 ▾
|
if ('textContent' in document.createElement('span')) {
exports.getText = function(el) {
return el.textContent;
}
exports.text = function(el, text) {
el.textContent = text;
}
} else {
exports.getText = function(el) {
return el.innerText;
}
exports.text = function(el, text) {
el.innerText = text;
}
}