Gozala / querystring

Node's querystring module for all engines.
MIT License
287 stars 72 forks source link

update npm package to 0.0.3 (which uses decodeURIComponent) #1

Closed coolaj86 closed 13 years ago

coolaj86 commented 13 years ago

Since Buffer isn't part of JavaScript, querystring should either list Buffer as a dependency or use the es3 standard decodeURIComponent.

Gozala commented 13 years ago

Buffer is not used in 0.0.3: https://github.com/Gozala/querystring/blob/master/lib/querystring.js

Or did I misunderstand you ?

coolaj86 commented 13 years ago

The version on npm is version 0.0.1, which uses Buffer for a "fast" implementation of decodeURIComponent.

The current version you have in the repo is 0.0.3, which uses decodeURIComponent.

Will you update the version on npm to 0.0.3 please?

Thanks. :-D

Gozala commented 13 years ago

Ooops! I guess I forgot to publish it!

It's there now: http://search.npmjs.org/#/querystring

Thanks for letting me know!