projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
02d743cd812b6f9201e8c041c25e96d2607b03aa
[platform/framework/web/crosswalk-tizen.git]
/
1
var toString = require('../lang/toString');
2
3
/**
4
* Escape RegExp string chars.
5
*/
6
function escapeRegExp(str) {
7
return toString(str).replace(/\W/g,'\\$&');
8
}
9
10
module.exports = escapeRegExp;
11
12