Guest User

Untitled

a guest
Feb 19th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. String.prototype.bytes = function() {
  2. var count = 0;
  3. for (var i = 0; i < this.length; i++) {
  4. count += Math.ceil(encodeURIComponent(this.charAt(i)).length / 3)
  5. }
  6. return count;
  7. };
Add Comment
Please, Sign In to add comment