projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
01d17b0eb182c3382ab628ea155fc2741497da75
[platform/framework/web/crosswalk-tizen.git]
/
1
var toString = require('../lang/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
module.exports = stripHtmlTags;
11