We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4086737 commit 8b5b632Copy full SHA for 8b5b632
addon/utils/mung-options-for-fetch.ts
@@ -1,4 +1,3 @@
1
-import { assign } from '@ember/polyfills';
2
import { serializeQueryParams } from './serialize-query-params';
3
import {
4
Method,
@@ -13,7 +12,7 @@ import {
13
12
export default function mungOptionsForFetch(
14
options: AjaxOptions
15
): FetchOptions {
16
- const hash = assign(
+ const hash = Object.assign({},
17
{
18
credentials: 'same-origin'
19
},
0 commit comments