( id: string, env: Env, ctx: ExecutionContext, )
| 42 | }; |
| 43 | |
| 44 | export const getPackageStat = async ( |
| 45 | id: string, |
| 46 | env: Env, |
| 47 | ctx: ExecutionContext, |
| 48 | ) => { |
| 49 | const value = await getPackageStatAll(env, ctx); |
| 50 | if (!value[id]) { |
| 51 | return; |
| 52 | } |
| 53 | |
| 54 | return value[id]; |
| 55 | }; |
no test coverage detected