chore: slice, never splice

This commit is contained in:
Cory Dransfeldt 2024-05-03 07:13:44 -07:00
parent b633ae5bb1
commit e8d0fc1cc0
No known key found for this signature in database

View file

@ -59,9 +59,8 @@ export default {
// posts
filterByPostType: (posts, postType) => {
const postData = [...posts]
if (postType === 'featured') return postData.reverse().filter(post => post.data.featured === true).splice(0, 3)
return postData.splice(0, 5)
if (postType === 'featured') return posts.filter(post => post.data.featured === true).splice(0, 3)
return posts.slice(0, 5)
},
truncateByWordCount: (text, wordCount) => {
const words = sanitizeHtml(text, { allowedTags: ['']}).split(/\s+/);