From 9a79481519af9b4ed4bd033ab0a481e71136b1eb Mon Sep 17 00:00:00 2001 From: Phil Freeman Date: Sun, 5 Jun 2016 12:59:58 -0700 Subject: [PATCH] Updates for 0.9.1 --- bower.json | 4 ++-- src/Node/URL.js | 6 ++---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/bower.json b/bower.json index 950c06b..1f61975 100644 --- a/bower.json +++ b/bower.json @@ -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" } } diff --git a/src/Node/URL.js b/src/Node/URL.js index f3105d9..14b4ad7 100644 --- a/src/Node/URL.js +++ b/src/Node/URL.js @@ -1,7 +1,5 @@ "use strict"; -// module Node.URL - var url = require('url'); var queryString = require('querystring'); @@ -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; \ No newline at end of file +exports.toQueryString = queryString.stringify;