Skip to content

Commit

Permalink
Simpler
Browse files Browse the repository at this point in the history
  • Loading branch information
matthew-andrews committed Feb 10, 2015
1 parent 1a858fa commit 87e8ea4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions server.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"use strict";

var fetch = require('node-fetch');
var realFetch = fetch;
var realFetch = require('node-fetch');
module.exports = global.fetch = function(url, options) {
if (/^\/\//.test(url)) {
url = 'https:' + url;
Expand Down

0 comments on commit 87e8ea4

Please sign in to comment.