Skip to content

Instantly share code, notes, and snippets.

@zheeeng
Created March 26, 2018 12:40
Show Gist options
  • Save zheeeng/c7006563e032d12ca717ea7c4283c651 to your computer and use it in GitHub Desktop.
Save zheeeng/c7006563e032d12ca717ea7c4283c651 to your computer and use it in GitHub Desktop.
function length (str) {
const regexAstralSymbols = /[\uD800-\uDBFF][\uDC00-\uDFFF]/g
return str.replace(regexAstralSymbols, '_').length
}
function reverse(str) {
return Array.from(str).reverse().join('')
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment