* @param {*} object The object to check. * @return {boolean} Whether or not the object is a DOM text node.
(object)
| 521 | * @return {boolean} Whether or not the object is a DOM text node. |
| 522 | */ |
| 523 | function isTextNode(object) { |
| 524 | return isNode(object) && object.nodeType == 3; |
| 525 | } |
| 526 | |
| 527 | module.exports = isTextNode; |
| 528 | },{"./isNode":13}],15:[function(require,module,exports){ |
no test coverage detected