chore: drop filter

This commit is contained in:
Cory Dransfeldt 2023-05-26 17:22:55 -07:00
parent 30e44692cd
commit 52b079515d
No known key found for this signature in database

View file

@ -5,10 +5,6 @@ module.exports = {
trim: (string, limit) => {
return string.length <= limit ? string : `${string.slice(0, limit)}...`
},
postPath: (path) => {
if (path.includes('micro/')) return path
return `/micro/${path}`
},
stripIndex: (path) => {
return path.replace('/index.html', '/')
},