MCPcopy Index your code
hub / github.com/ygs-code/vue / isTextNode

Function isTextNode

vue.js:3314–3316  ·  view source on GitHub ↗
(node)

Source from the content-addressed store, hash-verified

3312
3313 //判断是否是文本节点
3314 function isTextNode(node) {
3315 return isDef(node) && isDef(node.text) && isFalse(node.isComment)
3316 }
3317
3318
3319 //规范的子节点

Callers 1

normalizeArrayChildrenFunction · 0.85

Calls 2

isDefFunction · 0.85
isFalseFunction · 0.85

Tested by

no test coverage detected