mscdex / express-optimized

A minimal, optimized version of Express
MIT License
13 stars 1 forks source link

what does querystring.js do? #2

Open jonathanong opened 10 years ago

jonathanong commented 10 years ago

is it just a faster querystring parser?

jonathanong commented 10 years ago

okay and path-join.js. lol

mscdex commented 10 years ago

querystring was modified from node core to separate out the try-catch in querystring.parse().

path-join is basically the posix path.join() from node core, simplified a bit. The two reasons for this are:

jonathanong commented 10 years ago

oh god. i think i need path-join as a module! i always do path.join() and some sort of replace(/\/\//, '/') crap

dougwilson commented 10 years ago

If only... https://github.com/joyent/node/issues/2216