lnked/react-starter

View on GitHub
src/helpers/utils/nl2br.ts

Summary

Maintainability
A
0 mins
Test Coverage
export const nl2br = (str: string): string =>
  str && str.replace(/([^>])\n/g, '$1<br/>')