Skip to content

Commit 52ee603

Browse files
committed
Merge pull request #1 from purescript-node/1.0-updates
Updates for 0.9.1
2 parents 8186034 + 9a79481 commit 52ee603

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
"url": "git://github.com/purescript-node/purescript-node-url.git"
1313
},
1414
"devDependencies": {
15-
"purescript-console": "^0.1.0"
15+
"purescript-console": "^1.0.0"
1616
},
1717
"dependencies": {
18-
"purescript-nullable": "~0.2.1"
18+
"purescript-nullable": "^1.0.0"
1919
}
2020
}

src/Node/URL.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
"use strict";
22

3-
// module Node.URL
4-
53
var url = require('url');
64
var queryString = require('querystring');
75

@@ -12,9 +10,9 @@ exports.format = url.format;
1210
exports.resolve = function(from) {
1311
return function(to) {
1412
return url.resolve(from, to);
15-
}
13+
}
1614
};
1715

1816
exports.parseQueryString = queryString.parse;
1917

20-
exports.toQueryString = queryString.stringify;
18+
exports.toQueryString = queryString.stringify;

0 commit comments

Comments
 (0)