質問編集履歴
2
ファイル追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -199,3 +199,25 @@
|
|
199
199
|
gulp.task('default', gulp.series('serve', 'watch'));
|
200
200
|
|
201
201
|
```
|
202
|
+
|
203
|
+
**圧縮、変換前ファイル:themdsse.js**
|
204
|
+
|
205
|
+
```javascript
|
206
|
+
|
207
|
+
const USERS_API = "https://jsonplaceholder.typicode.com/users";
|
208
|
+
|
209
|
+
async function callApi() {
|
210
|
+
|
211
|
+
const res = await window.fetch(USERS_API);
|
212
|
+
|
213
|
+
const users = await res.json();
|
214
|
+
|
215
|
+
console.log(users);
|
216
|
+
|
217
|
+
}
|
218
|
+
|
219
|
+
|
220
|
+
|
221
|
+
callApi();
|
222
|
+
|
223
|
+
```
|
1
ファイル名追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -68,9 +68,7 @@
|
|
68
68
|
|
69
69
|
```
|
70
70
|
|
71
|
-
**
|
71
|
+
**gulpfile.babel.js**
|
72
|
-
|
73
|
-
**
|
74
72
|
|
75
73
|
```gulpmport gulp from 'gulp';
|
76
74
|
|