projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
6ac2fa4c4c3114101ed034b6bbcd14639160bf98
[platform/framework/web/crosswalk-tizen.git]
/
1
define(['../lang/toString'], function(toString){
2
/**
3
* Replaces hyphens with spaces. (only hyphens between word chars)
4
*/
5
function unhyphenate(str){
6
str = toString(str);
7
return str.replace(/(\w)(-)(\w)/g, '$1 $3');
8
}
9
return unhyphenate;
10
});