const hyphenateString = (str) => { return str.split(" ").join("-"); }; export default hyphenateString;