UNPKG

@variablesoftware/mock-kv

Version:

🎛️🏷️✨ Mock KV Namespace for testing Cloudflare Workers

9 lines (8 loc) 256 B
import logface from "@variablesoftware/logface"; export function deleteHandler(data) { return async (key) => { const existed = key in data; delete data[key]; logface.debug('delete("%s") → existed: %s', key, existed); }; }