UNPKG

184 BJavaScriptView Raw
1let latestNodeId = 1
2
3export default function TextNode (text) {
4 this.instanceId = ''
5 this.nodeId = latestNodeId++
6 this.parentNode = null
7 this.nodeType = 3
8 this.text = text
9}