diff options
Diffstat (limited to 'utilities.lisp')
-rw-r--r-- | utilities.lisp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/utilities.lisp b/utilities.lisp index 1ed13a3..0e258b6 100644 --- a/utilities.lisp +++ b/utilities.lisp @@ -127,3 +127,6 @@ (if (apply pred args) (apply then args) (apply else args)))) + +(defun clean-slashes (str) + (cl-ppcre:regex-replace-all "/" str "-")) |