* @param {*} object The object to check. * @return {boolean} Whether or not the object is a DOM text node.
(object)
| 562 | * @return {boolean} Whether or not the object is a DOM text node. |
| 563 | */ |
| 564 | function isTextNode(object) { |
| 565 | return isNode(object) && object.nodeType == 3; |
| 566 | } |
| 567 | |
| 568 | module.exports = isTextNode; |
| 569 | },{"./isNode":12}],14:[function(require,module,exports){ |
no test coverage detected