Skip to content

Commit 548a0a9

Browse files
committed
Changed const to let
1 parent fa8b19b commit 548a0a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/cache-provider/localstorage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import * as cache from './../cache';
22

3-
const localStorage = {};
3+
let localStorage = {}; // eslint-disable-line
44

55
localStorage.get = function (key, callback) {
66
try {

0 commit comments

Comments
 (0)