UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

16 lines (12 loc) 242 B
export default { get (key) { const value = localStorage[key] return value && JSON.parse(value) }, set (key, value) { localStorage[key] = JSON.stringify(value) }, remove (key) { localStorage.removeItem(key) }, }