(digit)
| 56 | function emptyBuffer() { buf = ""; } |
| 57 | function pushInBuffer(str) { buf += str; } |
| 58 | function pushRepeatCountDigit(digit) {return function(cm) {repeatCount = (repeatCount * 10) + digit}; } |
| 59 | function getCountOrOne() { |
| 60 | var i = repeatCount; |
| 61 | return i || 1; |
no outgoing calls
no test coverage detected
searching dependent graphs…