* @param {*} object The object to check. * @return {boolean} Whether or not the object is a DOM text node.
(object)
| 18365 | * @return {boolean} Whether or not the object is a DOM text node. |
| 18366 | */ |
| 18367 | function isTextNode(object) { |
| 18368 | return isNode(object) && object.nodeType == 3; |
| 18369 | } |
| 18370 | |
| 18371 | module.exports = isTextNode; |
| 18372 | },{"144":144}],146:[function(_dereq_,module,exports){ |
no test coverage detected