Created
February 13, 2016 08:11
-
-
Save maowug/cbf9c2a6e22b1a434fac to your computer and use it in GitHub Desktop.
StringDecoder clip
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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