47985c2f61ca9b5b67e063d12c17e6b0e896dfa50d4b6c771b95b07f599ccfd52232b9039f9e4e97fc2da4caf0066f0b57e5561ff72e36d2088fb646ebaea1 184 B

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