(string, count)
| 1095 | }); |
| 1096 | |
| 1097 | function repeat(string, count) { |
| 1098 | let s = string; |
| 1099 | while (count > 0) { |
| 1100 | s += string; |
| 1101 | count--; |
| 1102 | } |
| 1103 | return s; |
| 1104 | } |
| 1105 | |
| 1106 | it('supports large range requests', done => { |
| 1107 | const headers = { |