From c518401f53320355e96e762f304ca33a423fe0bb Mon Sep 17 00:00:00 2001 From: syuilo Date: Fri, 31 Mar 2017 00:01:58 +0900 Subject: [PATCH] Bye bye polyfill --- package.json | 1 - src/web/app/boot.js | 3 --- 2 files changed, 4 deletions(-) diff --git a/package.json b/package.json index 79f607c41..99e51a5d7 100644 --- a/package.json +++ b/package.json @@ -148,7 +148,6 @@ "uuid": "3.0.1", "vhost": "3.0.2", "websocket": "1.0.24", - "whatwg-fetch": "2.0.3", "xml2json": "0.11.0" } } diff --git a/src/web/app/boot.js b/src/web/app/boot.js index 8a9d623bd..cc9235757 100644 --- a/src/web/app/boot.js +++ b/src/web/app/boot.js @@ -26,9 +26,6 @@ riot.mixin({ CONFIG }); -// ↓ iOS待ちPolyfill (SEE: http://caniuse.com/#feat=fetch) -require('whatwg-fetch'); - // ↓ NodeList、HTMLCollection、FileList、DataTransferItemListで forEach を使えるようにする if (NodeList.prototype.forEach === undefined) { NodeList.prototype.forEach = Array.prototype.forEach;