chore: slice, never splice
This commit is contained in:
parent
b633ae5bb1
commit
e8d0fc1cc0
1 changed files with 2 additions and 3 deletions
|
@ -59,9 +59,8 @@ export default {
|
||||||
|
|
||||||
// posts
|
// posts
|
||||||
filterByPostType: (posts, postType) => {
|
filterByPostType: (posts, postType) => {
|
||||||
const postData = [...posts]
|
if (postType === 'featured') return posts.filter(post => post.data.featured === true).splice(0, 3)
|
||||||
if (postType === 'featured') return postData.reverse().filter(post => post.data.featured === true).splice(0, 3)
|
return posts.slice(0, 5)
|
||||||
return postData.splice(0, 5)
|
|
||||||
},
|
},
|
||||||
truncateByWordCount: (text, wordCount) => {
|
truncateByWordCount: (text, wordCount) => {
|
||||||
const words = sanitizeHtml(text, { allowedTags: ['']}).split(/\s+/);
|
const words = sanitizeHtml(text, { allowedTags: ['']}).split(/\s+/);
|
||||||
|
|
Reference in a new issue