Function: s-join
s-join is a byte-compiled function defined in s.el.
Signature
(s-join SEPARATOR STRINGS)
Documentation
Join all the strings in STRINGS with SEPARATOR in between.
Source Code
;; Defined in ~/.emacs.d/elpa/s-20220902.1511/s.el
(defun s-join (separator strings)
"Join all the strings in STRINGS with SEPARATOR in between."
(declare (pure t) (side-effect-free t))
(mapconcat 'identity strings separator))