chore: drop filter
This commit is contained in:
parent
30e44692cd
commit
52b079515d
1 changed files with 0 additions and 4 deletions
|
@ -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', '/')
|
||||
},
|
||||
|
|
Reference in a new issue