Skip to content

Instantly share code, notes, and snippets.

@607011
Created January 5, 2019 07:47
Show Gist options
  • Save 607011/1d39ddf8b5b7fe42094ed35ffe1b7913 to your computer and use it in GitHub Desktop.
Save 607011/1d39ddf8b5b7fe42094ed35ffe1b7913 to your computer and use it in GitHub Desktop.
Calculate length of unicode string
Object.defineProperty(String.prototype, 'unicodeLength', {
get: function() {
return this.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]/g, '.').length;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment