Closed coffee-cup closed 5 years ago
It should be valid to use a null or undefined as a value stored in local storage. Currently, this is not entirely possible because of a != null check. x.hasOwnProperty should be used instead.
null
undefined
!= null
x.hasOwnProperty
https://github.com/prodo-dev/prodo/commit/3162d26977c55984b9aae9d05f104dabe524994a#r35719088
Fixed via #184
It should be valid to use a
null
orundefined
as a value stored in local storage. Currently, this is not entirely possible because of a!= null
check.x.hasOwnProperty
should be used instead.https://github.com/prodo-dev/prodo/commit/3162d26977c55984b9aae9d05f104dabe524994a#r35719088