Skip to content

Instantly share code, notes, and snippets.

@koshigoe
Created August 9, 2008 13:16
Show Gist options
  • Save koshigoe/4679 to your computer and use it in GitHub Desktop.
Save koshigoe/4679 to your computer and use it in GitHub Desktop.
String.prototype.bytes = function() {
var count = 0;
for (var i = 0; i < this.length; i++) {
count += Math.ceil(encodeURIComponent(this.charAt(i)).length / 3)
}
return count;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment