UNPKG
focalxaiinspection
Version:
latest (0.1.3)
0.1.3
0.1.1
0.1.0
Focalx AI Inspection
focalxaiinspection
/
src
/
lib
/
Utils
/
UrlSlug.js
6 lines
•
177 B
JavaScript
View Raw
1
2
3
4
5
6
export
const
UrlSlug = (
str
) => {
str
=
str
.
toLowerCase
();
str
=
str
.
replace
(/[^a-z0-
9
]+/g,
'-'
);
str
=
str
.
replace
(/^-+|-+$/g,
''
);
return
str
+
'.html'
; }