Skip to content

Commit

Permalink
Merge pull request #1 from purescript-node/1.0-updates
Browse files Browse the repository at this point in the history
Updates for 0.9.1
  • Loading branch information
hdgarrood committed Jun 5, 2016
2 parents 8186034 + 9a79481 commit 52ee603
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
"url": "git://github.com/purescript-node/purescript-node-url.git"
},
"devDependencies": {
"purescript-console": "^0.1.0"
"purescript-console": "^1.0.0"
},
"dependencies": {
"purescript-nullable": "~0.2.1"
"purescript-nullable": "^1.0.0"
}
}
6 changes: 2 additions & 4 deletions src/Node/URL.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
"use strict";

// module Node.URL

var url = require('url');
var queryString = require('querystring');

Expand All @@ -12,9 +10,9 @@ exports.format = url.format;
exports.resolve = function(from) {
return function(to) {
return url.resolve(from, to);
}
}
};

exports.parseQueryString = queryString.parse;

exports.toQueryString = queryString.stringify;
exports.toQueryString = queryString.stringify;

0 comments on commit 52ee603

Please sign in to comment.