shopify-polyfills-beta
Advanced tools
Comparing version 0.0.1-beta.7 to 0.0.1-beta.8
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
require("whatwg-fetch"); | ||
console.log('BROWSER FETCH'); |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
require("isomorphic-fetch"); | ||
console.log('SERVER FETCH'); |
{ | ||
"name": "shopify-polyfills-beta", | ||
"version": "0.0.1-beta.7", | ||
"version": "0.0.1-beta.8", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "description": "Blessed polyfills for web platform features.", |
import 'isomorphic-fetch'; | ||
console.log('SERVER FETCH'); |
import 'whatwg-fetch'; | ||
console.log('BROWSER FETCH'); |
10115
197