* @param {*} object The object to check. * @return {boolean} Whether or not the object is a DOM text node.
(object)
| 400 | * @return {boolean} Whether or not the object is a DOM text node. |
| 401 | */ |
| 402 | function isTextNode(object) { |
| 403 | return isNode(object) && object.nodeType == 3; |
| 404 | } |
| 405 | |
| 406 | module.exports = isTextNode; |
| 407 | },{"./isNode":11}],13:[function(require,module,exports){ |
no test coverage detected