New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.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.10 to 0.0.11

2

package.json
{
"name": "react-native-storage",
"version": "0.0.10",
"version": "0.0.11",
"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",

@@ -103,3 +103,3 @@ /*

let { key, id, rawData, expires } = params;
if(key.toString().includes('_')) {
if(key.toString().indexOf('_') !== -1) {
console.error('Please do not use "_" in key!');

@@ -126,3 +126,3 @@ }

else {
if(id.toString().includes('_')) {
if(id.toString().indexOf('_') !== -1) {
console.error('Please do not use "_" in id!');

@@ -129,0 +129,0 @@ }

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