Skip to content

Instantly share code, notes, and snippets.

@vaporic
Last active August 29, 2015 14:25
Show Gist options
  • Save vaporic/34ee73adf31a8311ce60 to your computer and use it in GitHub Desktop.
Save vaporic/34ee73adf31a8311ce60 to your computer and use it in GitHub Desktop.
unescape AngularJS
.filter("unscape",function(){
return function(input){
return input.replace(/\\/g, '');
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment