{"body":"  // Capitalize the word at the current position\n  insertWordsAtIndex(index, w) {\n    var part1 = this._w.slice(0, index);\n    var part2 = this._w.slice(index, this._w.length);\n    this._w = part1.concat(w).concat(part2);\n    this._l = this._w.length;\n  }\n\n  // Capitalize the word at the current position\n  capitalizeCurrentWord() {\n    var w;\n    if ((w = this.getCurrentWord()) != null) {\n      var o = utils.titleString(gc, w);\n      if (w != o) {\n        this.updateCurrentWord(o);\n      }\n      return o;\n    }\n    return null;\n  }","name":"","extension":"txt","url":"https://www.irccloud.com/pastebin/NIE0GGvB","modified":1627923429,"id":"NIE0GGvB","size":537,"lines":20,"own_paste":false,"theme":"","date":1627923429}