// Create plain text nodeexportfunctionplain(text){// clear if build mode is disabledif(this._build===false){this.clear()}// create text nodethis.node.appendChild(document.createTextNode(text))returnthis}// FIXME: Does this also work for textpath?// Get length of text elementexportfunctionlength(){returnthis.node.getComputedTextLength()}