From 4ee474431244a1ae0c564ab2b3544b16c1f7e434 Mon Sep 17 00:00:00 2001 From: Louis Chatriot Date: Wed, 1 May 2013 20:26:31 +0100 Subject: [PATCH] Able to load and understand a database --- lib/customUtils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/customUtils.js b/lib/customUtils.js index 3a0b7f3..e0a6167 100644 --- a/lib/customUtils.js +++ b/lib/customUtils.js @@ -26,7 +26,7 @@ function ensureDirectoryExists (dir, cb) { function uid (len) { return crypto.randomBytes(Math.ceil(len * 3 / 4)) .toString('base64') - .slice(0, len); + //.slice(0, len); } console.log(uid(5));