Advertisement
tourniquet

formidable emtpy file path

Dec 19th, 2014
1,202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if (files.file.size) {
  2.   const newFilePath = path.join('/uploads/', tempFilePath)
  3. } else {
  4.     const newFilePath = ''
  5. };
  6.  
  7. // shorthand version
  8. const newFilePath = files.file.size ? path.join('/uploads/', tempFilePath) : ''
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement