add a comment to make clear that the string in stringIterator

does not change; only curIndex is increased. Newlines are counted
between curIndex and the end of string.
This commit is contained in:
webzwo0i 2015-02-15 13:25:57 +01:00
parent c191a8716e
commit 4313bd27f8

View file

@ -507,6 +507,7 @@ exports.opAssembler = function () {
*/
exports.stringIterator = function (str) {
var curIndex = 0;
// newLines is the number of \n between curIndex and str.length
var newLines = str.split("\n").length - 1
function getnewLines(){
return newLines