projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
68980976b6ee878ee301f9f9907bda2f8807e126
[platform/framework/web/crosswalk-tizen.git]
/
1
'use strict';
2
3
var replace = String.prototype.replace
4
, re = /([a-z\d])([A-Z])/g;
5
6
module.exports = function () {
7
return replace.call(this, re, "$1-$2").toLowerCase();
8
};