Skip to content

Instantly share code, notes, and snippets.

@maowug
Created February 13, 2016 08:11
Show Gist options
  • Save maowug/cbf9c2a6e22b1a434fac to your computer and use it in GitHub Desktop.
Save maowug/cbf9c2a6e22b1a434fac to your computer and use it in GitHub Desktop.
StringDecoder clip
var StringDecoder = exports.StringDecoder = function(encoding) {
this.encoding = (encoding || 'utf8').toLowerCase().replace(/[-_]/, '');
assertEncoding(encoding);
switch (this.encoding) {
case 'utf8':
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment