Skip to content

Instantly share code, notes, and snippets.

@GitHub30
Created October 12, 2019 16:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GitHub30/7a0c73382c9a3c6c04f21727aea164da to your computer and use it in GitHub Desktop.
Save GitHub30/7a0c73382c9a3c6c04f21727aea164da to your computer and use it in GitHub Desktop.
function fullToHalf(str) {
return str.replace(/[A-Za-z0-9]/g, s => String.fromCharCode(s.charCodeAt(0) - 0xFEE0));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment