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

asc

Package Overview
Dependencies
Maintainers
0
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

asc - npm Package Compare versions

Comparing version 2.1.2 to 2.1.3

2

package.json
{
"name": "asc",
"description": "A middleware layer between a service and a client. The service could be an in-process library, a file, an external web service, anything. Any time the results from a resource call can be cached, you can use ASC as a proxy to that resource.",
"version": "2.1.2",
"version": "2.1.3",
"author": "Anthony Hildoer <anthony@bluerival.com>",

@@ -6,0 +6,0 @@ "repository": {

@@ -16,4 +16,4 @@ declare module 'asc' {

type GetCallback = (key: string) => Promise<any>;
type SetCallback = (key: string, data: any) => Promise<void>;
type ClearCallback = (key: string) => Promise<void>;
type SetCallback = (key: string, data: any) => Promise<any>;
type ClearCallback = (key: string) => Promise<any>;

@@ -20,0 +20,0 @@ interface CacheLayer {

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