Skip to content

Instantly share code, notes, and snippets.

@st98
Created January 29, 2015 17:44
Show Gist options
  • Save st98/881c172a325acbe7bb90 to your computer and use it in GitHub Desktop.
Save st98/881c172a325acbe7bb90 to your computer and use it in GitHub Desktop.
f('ABCDE') === 'ABCDE'; g('ABCDE') === 'ABCDE';
function f(s) {
return s.replace(/[A-~]/g, function (c) {
return String.fromCharCode(c.charCodeAt(0) + 0xfee0);
});
}
function g(s) {
return s.replace(/[\uff01-\uff5e]/g, function (c) {
return String.fromCharCode(c.charCodeAt(0) - 0xfee0);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment