()
| 1840 | } |
| 1841 | |
| 1842 | private get _methodCanHaveBody(): boolean { |
| 1843 | return !methodsWithoutBody.has(this.options.method) || (this.options.method === 'GET' && this.options.allowGetBody); |
| 1844 | } |
| 1845 | |
| 1846 | private _canWriteBody(): boolean { |
| 1847 | return !this._noPipe && !this.isReadonly && this._methodCanHaveBody; |