Guest User

Untitled

a guest
Sep 14th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. function episodeParser({
  2. id,
  3. title,
  4. description = 'No summary',
  5. optionalField,
  6. anotherOptionalField
  7. }) {
  8. return {
  9. guid: id,
  10. title,
  11. summary: description,
  12. ...(optionalField && {optionalField}),
  13. ...(anotherOptionalField && {anotherOptionalField})
  14. }
  15. }
Add Comment
Please, Sign In to add comment