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

@react-native-async-storage/async-storage

Package Overview
Dependencies
Maintainers
1
Versions
64
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@react-native-async-storage/async-storage - npm Package Compare versions

Comparing version 1.15.16 to 1.15.17

2

package.json
{
"name": "@react-native-async-storage/async-storage",
"version": "1.15.16",
"version": "1.15.17",
"description": "Asynchronous, persistent, key-value storage system for React Native.",

@@ -5,0 +5,0 @@ "main": "lib/commonjs/index.js",

@@ -63,6 +63,6 @@ // CREDITS: This types are based on the original work made by all the people who contributed to @types/react-native

type AsyncStorageHook = {
getItem(callback?: (error?: Error, result?: string) => void): Promise<string | null>;
setItem(value: string, callback?: (error?: Error) => void): Promise<void>;
mergeItem(value: string, callback?: (error?: Error) => void): Promise<void>;
removeItem(callback?: (error?: Error) => void): Promise<void>;
getItem: (callback?: (error?: Error, result?: string) => void) => Promise<string | null>;
setItem: (value: string, callback?: (error?: Error) => void) => Promise<void>;
mergeItem: (value: string, callback?: (error?: Error) => void) => Promise<void>;
removeItem: (callback?: (error?: Error) => void) => Promise<void>;
}

@@ -69,0 +69,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