(count)
| 781 | }) |
| 782 | |
| 783 | function createManyParams (count) { |
| 784 | var str = '' |
| 785 | |
| 786 | if (count === 0) { |
| 787 | return str |
| 788 | } |
| 789 | |
| 790 | str += '0=0' |
| 791 | |
| 792 | for (var i = 1; i < count; i++) { |
| 793 | var n = i.toString(36) |
| 794 | str += '&' + n + '=' + n |
| 795 | } |
| 796 | |
| 797 | return str |
| 798 | } |
| 799 | |
| 800 | function createServer (opts) { |
| 801 | var _bodyParser = typeof opts !== 'function' |