Skip to content

Commit

Permalink
ft(readtime):implement helper function to calculate read time
Browse files Browse the repository at this point in the history
[#166840894 Finishes]
  • Loading branch information
timi-codes committed Aug 16, 2019
1 parent 0a9e498 commit ace22b3
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
10 changes: 10 additions & 0 deletions __test__/utils/index.spec.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions src/utils/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
const calculateReadTime = content => {
const wordsPerMinute = 200;

const textLength = content.split(' ').length;
if (textLength > wordsPerMinute) {
const value = Math.ceil(textLength / wordsPerMinute);
return `~${value} min read`;
}
return 'less than a min read';
};
export default calculateReadTime;

0 comments on commit ace22b3

Please sign in to comment.