0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00

expose parsers freelist

This commit is contained in:
Ryan Dahl 2010-10-07 16:17:06 -07:00
parent 54e844cf08
commit 0003c701bc

View File

@ -115,6 +115,7 @@ var parsers = new FreeList('parsers', 1000, function () {
return parser;
});
exports.parsers = parsers;
var CRLF = "\r\n";