Skip to content

Commit

Permalink
🌸Release V1.4.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
Geek-James committed May 24, 2020
1 parent 81c87e8 commit a83d446
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/config/global.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@ export const setLocalStore = (name, content) => {
}

// 本地化获取
export const getLocalStore = name => {
export const getLocalStore = (name) => {
if (!name) return
return window.localStorage.getItem(name)
}

// 本地化删除
export const removeLocalStore = name => {
export const removeLocalStore = (name) => {
if (!name) return
return window.localStorage.removeItem(name)
}

// 版本信息
export const _VERSION_ = '1.4.1'
export const _VERSION_ = '1.4.2'

0 comments on commit a83d446

Please sign in to comment.