minor changes

This commit is contained in:
coderaiser 2013-02-24 08:58:37 -05:00
parent 1a2771c6f3
commit d54d4706d3
2 changed files with 3 additions and 4 deletions

View file

@ -282,7 +282,7 @@
p.data = indexProcessing({
additional : lList,
data : pData,
data : pData.toString(),
});
main.sendResponse(p);

View file

@ -57,11 +57,10 @@
exports.getQuery = getQuery,
exports.isGZIP = isGZIP,
exports.sendFile = sendFile,
exports.sendResponse = sendResponse,
/* compitability with old versions of node */
exports.fs.exists = exports.fs.exists || exports.path.exists;
//exports.fs.watch = isWin32 ? fs.watch : linuxWatch;
exports.fs.exists = exports.fs.exists || exports.path.exists,
/* Needed Modules */
exports.util = Util = require(LIBDIR + 'util'),