UNPKG

@amitkhare/indexed-storage

Version:

A modern, localStorage-like API for IndexedDB with instance-based and static APIs, multi-store support, configurable databases, and enhanced capabilities

15 lines (12 loc) 286 B
// Configuration for IndexedStorage const config = { enableLogging: false }; // Internal logging function export function log(type, message, ...args) { if (config.enableLogging) { console[type](message, ...args); } } // Export configuration export { config };