projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
de34b61b0747a54082c7b4f402dbb745b85b6b51
[platform/framework/web/crosswalk-tizen.git]
/
1
define(['../lang/toString'], function(toString) {
2
3
/**
4
* Escapes a string for insertion into HTML.
5
*/
6
function escapeHtml(str){
7
str = toString(str)
8
.replace(/&/g, '&')
9
.replace(/</g, '<')
10
.replace(/>/g, '>')
11
.replace(/'/g, ''')
12
.replace(/"/g, '"');
13
return str;
14
}
15
16
return escapeHtml;
17
18
});