(count)
| 929 | }) |
| 930 | |
| 931 | function createManyParams (count) { |
| 932 | let str = '' |
| 933 | |
| 934 | if (count === 0) { |
| 935 | return str |
| 936 | } |
| 937 | |
| 938 | str += '0=0' |
| 939 | |
| 940 | for (let i = 1; i < count; i++) { |
| 941 | const n = i.toString(36) |
| 942 | str += '&' + n + '=' + n |
| 943 | } |
| 944 | |
| 945 | return str |
| 946 | } |
| 947 | |
| 948 | function createServer (opts) { |
| 949 | const _bodyParser = typeof opts !== 'function' |
no outgoing calls
no test coverage detected
searching dependent graphs…