Skip to content

Instantly share code, notes, and snippets.

@barneycarroll
Last active August 1, 2017 16:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save barneycarroll/e6c2065fcdc461f9ad6949bd236671df to your computer and use it in GitHub Desktop.
Save barneycarroll/e6c2065fcdc461f9ad6949bd236671df to your computer and use it in GitHub Desktop.
export default const Spanner = ({ children = '', split = /\b/ }) =>
<span className="spanner">
{[].concat(children).map(string =>
string.split(split).map(substring =>
<span className={/^\s*$/.test(substring) ? 'whitespace' : 'word'}>
{substring}
</span>
)
)}
</span>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment