Merge pull request #4 from jmarca/bug/duplicate_genDB

genDB was repeated.  deleted the second one
This commit is contained in:
Max 2013-10-16 18:17:52 -07:00
commit 7170cc0b43
1 changed files with 0 additions and 10 deletions

View File

@ -22,16 +22,6 @@ var genDB = function(db) {
}; };
}; };
var genDB = function(db) {
var parts, dbname, auth;
parts = urls.parse(db);
dbname = parts.pathname.replace(/^\//, '');
auth = parts.auth ? (parts.auth + '@') : '';
return {
name: dbname,
url: parts.protocol + '//' + auth + parts.host
};
};
module.exports = function(grunt) { module.exports = function(grunt) {