Skip to content

Commit

Permalink
fix(useLocalStorage): New version was not released correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
microcipcip committed Feb 29, 2020
1 parent f9ddd85 commit e1ec200
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ export const isObj = (varToCheck: any) =>
export const isNull = (varToCheck: any) =>
checkType(varToCheck) === '[object Null]'

export const isFunction = (varToCheck: any) =>
checkType(varToCheck) === '[object Function]'

export const isUndefined = (varToCheck: any) =>
checkType(varToCheck) === '[object Undefined]'

Expand Down

0 comments on commit e1ec200

Please sign in to comment.