UNPKG

@variablesoftware/mock-kv

Version:

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

13 lines (12 loc) 360 B
import logface from '@variablesoftware/logface'; /** * Returns a deep clone of the KV data for inspection/testing. */ export function dumpHandler(data) { return () => { logface.debug('dump called'); const result = structuredClone(data); logface.info('dump success', { keys: Object.keys(result) }); return result; }; }