(value: any, pretty?: boolean)
| 28 | } |
| 29 | |
| 30 | json(value: any, pretty?: boolean) { |
| 31 | return this.text( |
| 32 | JSON.stringify(value, undefined, pretty ? 2 : undefined), |
| 33 | 200, |
| 34 | "application/json" |
| 35 | ); |
| 36 | } |
| 37 | } |
| 38 | |
| 39 | function getRandomInteger(min: number, max: number) { |
no test coverage detected