(id: string, env: Env, ctx: ExecutionContext)
| 17 | }; |
| 18 | |
| 19 | const getId = async (id: string, env: Env, ctx: ExecutionContext) => { |
| 20 | const data = await getMetadata(env, ctx); |
| 21 | if (!data[id]) { |
| 22 | return; |
| 23 | } |
| 24 | |
| 25 | return data[id]; |
| 26 | }; |
| 27 | |
| 28 | export { getArrayMetadata, getId }; |
no test coverage detected