Guest User

Untitled

a guest
Sep 14th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. var addBRs = (inVal) => {
  2. return _.dropRight(
  3. _.flatten(
  4. _.map( _.split(inVal, "\n"),
  5. e => [e, '<br/>'])
  6. ));
  7. }
Add Comment
Please, Sign In to add comment