UNPKG
uhyphen
Version:
latest (0.2.0)
0.2.0
0.1.0
0.0.0
A micro utility to hyphenize strings
github.com/WebReflection/uhyphen
WebReflection/uhyphen
uhyphen
/
esm
/
index.js
3 lines
(2 loc)
•
149 B
JavaScript
View Raw
1
2
3
export
default
camel
=>
camel.replace(
/(([A-Z0-9])([A-Z0-9][a-z]))|(([a-z0-9]+)([A-Z]))/
g, '
$2
$5
-
$3
$6
') .toLowerCase();