UNPKG
@withstudiocms/internal_helpers
Version:
beta (0.1.0-beta.1)
latest (0.1.0-beta.3)
0.1.0-beta.3
0.1.0-beta.2
0.1.0-beta.1
Internal helper utilities for StudioCMS
studiocms.dev
withstudiocms/studiocms
@withstudiocms/internal_helpers
/
dist
/
utils
/
safeString.js
7 lines
(6 loc)
•
160 B
JavaScript
View Raw
1
2
3
4
5
6
7
function
convertToSafeString
(
string
) {
return
string
.
replace
(
/[^a-zA-Z0-9]/g
,
"_"
).
replace
(
/^_+|_+$/g
,
""
).
toLowerCase
(); }
export
{ convertToSafeString };