* @param {*} object The object to check. * @return {boolean} Whether or not the object is a DOM text node.
(object)
| 665 | * @return {boolean} Whether or not the object is a DOM text node. |
| 666 | */ |
| 667 | function isTextNode(object) { |
| 668 | return isNode(object) && object.nodeType == 3; |
| 669 | } |
| 670 | |
| 671 | module.exports = isTextNode; |
| 672 | },{"./isNode":14}],16:[function(require,module,exports){ |
no test coverage detected