diff --git a/src/utils/assist.js b/src/utils/assist.js index 33828da7..78708722 100644 --- a/src/utils/assist.js +++ b/src/utils/assist.js @@ -320,4 +320,6 @@ export function setMatchMedia () { }; window.matchMedia = window.matchMedia || matchMediaPolyfill; } -} \ No newline at end of file +} + +export const kebabJoin = (...args) => args.map(arg => `${arg}`).join('-');