We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8186034 + 9a79481 commit 52ee603Copy full SHA for 52ee603
2 files changed
bower.json
@@ -12,9 +12,9 @@
12
"url": "git://github.com/purescript-node/purescript-node-url.git"
13
},
14
"devDependencies": {
15
- "purescript-console": "^0.1.0"
+ "purescript-console": "^1.0.0"
16
17
"dependencies": {
18
- "purescript-nullable": "~0.2.1"
+ "purescript-nullable": "^1.0.0"
19
}
20
src/Node/URL.js
@@ -1,7 +1,5 @@
1
"use strict";
2
3
-// module Node.URL
4
-
5
var url = require('url');
6
var queryString = require('querystring');
7
@@ -12,9 +10,9 @@ exports.format = url.format;
10
exports.resolve = function(from) {
11
return function(to) {
return url.resolve(from, to);
- }
+ }
};
exports.parseQueryString = queryString.parse;
-exports.toQueryString = queryString.stringify;
+exports.toQueryString = queryString.stringify;
0 commit comments