New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

json-crawl

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

json-crawl - npm Package Compare versions

Comparing version 0.2.1 to 0.2.2

4

browser/types.d.ts

@@ -23,3 +23,3 @@ export type JsonPath = (string | number)[];

node: any;
} & (T extends object ? T : never);
} & (T extends object ? T : {});
export type CloneHook<T = any, R = any> = CrawlHook<CloneState<T>, R>;

@@ -33,2 +33,2 @@ export type CrawlHook<T = any, R = any> = (value: unknown, ctx: CrawlContext<T, R>) => Promise<CrawlHookResponse<T> | null> | CrawlHookResponse<T> | null;

[key: CrawlRulesKey | '/*']: CrawlRules<R, T> | CrawlRulesFunc<R, T>;
} & (R extends object ? R : never);
} & (R | {});

@@ -23,3 +23,3 @@ export type JsonPath = (string | number)[];

node: any;
} & (T extends object ? T : never);
} & (T extends object ? T : {});
export type CloneHook<T = any, R = any> = CrawlHook<CloneState<T>, R>;

@@ -33,2 +33,2 @@ export type CrawlHook<T = any, R = any> = (value: unknown, ctx: CrawlContext<T, R>) => Promise<CrawlHookResponse<T> | null> | CrawlHookResponse<T> | null;

[key: CrawlRulesKey | '/*']: CrawlRules<R, T> | CrawlRulesFunc<R, T>;
} & (R extends object ? R : never);
} & (R | {});

@@ -23,3 +23,3 @@ export type JsonPath = (string | number)[];

node: any;
} & (T extends object ? T : never);
} & (T extends object ? T : {});
export type CloneHook<T = any, R = any> = CrawlHook<CloneState<T>, R>;

@@ -33,2 +33,2 @@ export type CrawlHook<T = any, R = any> = (value: unknown, ctx: CrawlContext<T, R>) => Promise<CrawlHookResponse<T> | null> | CrawlHookResponse<T> | null;

[key: CrawlRulesKey | '/*']: CrawlRules<R, T> | CrawlRulesFunc<R, T>;
} & (R extends object ? R : never);
} & (R | {});
{
"name": "json-crawl",
"version": "0.2.1",
"version": "0.2.2",
"description": "Async and sync crawler for json object",

@@ -5,0 +5,0 @@ "module": "dist/esm/index.js",

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