projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
e8da956d2e5f0929292fa8bba048a3f94e2e9c77
[platform/framework/web/crosswalk-tizen.git]
/
1
define(['../lang/toString'], function(toString){
2
/**
3
* Remove HTML tags from string.
4
*/
5
function stripHtmlTags(str){
6
str = toString(str);
7
8
return str.replace(/<[^>]*>/g, '');
9
}
10
return stripHtmlTags;
11
});