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
/
cjs
/
index.js
4 lines
(3 loc)
•
165 B
JavaScript
View Raw
1
2
3
4
'use strict'
;
module
.
exports
=
camel
=>
camel.
replace
(
/(([A-Z0-9])([A-Z0-9][a-z]))|(([a-z0-9]+)([A-Z]))/g
,
'$2$5-$3$6'
) .
toLowerCase
();