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 0fc511b commit 34b5bc5Copy full SHA for 34b5bc5
addon/utils/mung-options-for-fetch.ts
@@ -15,13 +15,13 @@ export default function mungOptionsForFetch(
15
let fetchOptions = {
16
credentials: 'same-origin',
17
};
18
-
+
19
for (const key in options) {
20
if (Object.prototype.hasOwnProperty.call(options, key)) {
21
- fetchOptions[key] = options[key]
+ fetchOptions[key] = options[key];
22
}
23
24
25
const hash = fetchOptions as FetchOptions;
26
27
// Default to 'GET' in case `type` is not passed in (mimics jQuery.ajax).
tests/dummy/config/ember-try.js
@@ -17,7 +17,7 @@ module.exports = async function () {
name: 'ember-lts-3.28',
npm: {
devDependencies: {
- 'ember-source': '~3.28.0'
+ 'ember-source': '~3.28.0',
},
0 commit comments