()
| 234 | * @see {@link provideHttpClient} |
| 235 | */ |
| 236 | export function withNoXsrfProtection(): HttpFeature<HttpFeatureKind.NoXsrfProtection> { |
| 237 | return makeHttpFeature(HttpFeatureKind.NoXsrfProtection, [ |
| 238 | { |
| 239 | provide: XSRF_ENABLED, |
| 240 | useValue: false, |
| 241 | }, |
| 242 | ]); |
| 243 | } |
| 244 | |
| 245 | /** |
| 246 | * Add JSONP support to the configuration of the current `HttpClient` instance. |
no test coverage detected