UNPKG

@mewters/smart-storage

Version:

A JavaScript/TypeScript library designed to simplify working with localStorage, sessionStorage, and cookies by offering automatic object conversion and consistent API.

16 lines (15 loc) 493 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /* eslint-disable @typescript-eslint/unbound-method */ const _1 = require("."); describe('index', () => { it('should export LocalStorage', () => { expect(_1.LocalStorage).toBeDefined(); }); it('should export SessionStorage', () => { expect(_1.SessionStorage).toBeDefined(); }); it('should export CookieStorage', () => { expect(_1.CookieStorage).toBeDefined(); }); });