redbadger/pride-london-app

View on GitHub
src/lib/string.js

Summary

Maintainability
A
0 mins
Test Coverage
// @flow
/* eslint-disable import/prefer-default-export */

export const hyphenate = (text: string): string =>
  text
    .toLowerCase()
    .split(" ")
    .join("-");