Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-native-storage

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-storage - npm Package Compare versions

Comparing version 0.0.4 to 0.0.5

2

package.json
{
"name": "react-native-storage",
"version": "0.0.4",
"version": "0.0.5",
"description": "This is a local storage wrapper for both react-native(AsyncStorage) and browser(localStorage). ES6/babel is needed.",

@@ -5,0 +5,0 @@ "main": "storage.js",

/*
* local storage(web/react native) wrapper
* sunnylqm 2015-08-23
* version 0.0.4
* version 0.0.5
*/

@@ -41,3 +41,3 @@ let cache = {};

}
static _saveToMap(m, id, d) {
static _saveToMap(id, d) {
let s = Storage._s;

@@ -188,3 +188,3 @@ if(m[id]){

ret;
if(m && m[id] !== undefined){
if(m[id] !== undefined){
if(isBrowser){

@@ -191,0 +191,0 @@ ret = s.getItem('map_' + m[id]);

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc