Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 296 Bytes

README.md

File metadata and controls

19 lines (13 loc) · 296 Bytes

Local Storage Polyfill

The "localStorage" polyfill for Node.js.

Polyfill

// jest.setup.js
import '@mswjs/local-storage-polyfill/global'

Node.js

import { Storage } from '@mswjs/local-storage-polyfill'

const storage = new Storage()
storage.setItem('name', 'John')