Skip to content

Commit

Permalink
fix(writing-file-content): remove trim when writing file content
Browse files Browse the repository at this point in the history
  • Loading branch information
jaebradley committed Apr 24, 2018
1 parent d1add87 commit fd3ea55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mergeContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const mergeContent = ({ originalContent, additionalContent }) => {
return JSON.stringify(mergedContent, null, 2);
}

return `${originalContent}\n${additionalContent}`.trim();
return `${originalContent}\n${additionalContent}`;
};

export default mergeContent;

0 comments on commit fd3ea55

Please sign in to comment.