refactor: Remove duplicated 'unixtime' case in parser.ts

This commit is contained in:
kwaroran
2024-06-14 08:21:42 +09:00
parent dc894af401
commit 4e4f6c4295

View File

@@ -763,9 +763,6 @@ const matcher = (p1:string,matcherArg:matcherArg) => {
case 'prefill_supported':{
return db.aiModel.startsWith('claude') ? '1' : '0'
}
case 'unixtime':{
return (Date.now() / 1000).toFixed(2)
}
case 'screen_width':{
return get(SizeStore).w.toString()
}