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

aidly

Package Overview
Dependencies
Maintainers
0
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aidly - npm Package Compare versions

Comparing version 1.10.0 to 1.11.0

1

dist/index.d.ts

@@ -83,2 +83,3 @@ import type { Prettify } from './types';

DeepPrettify,
ExtractRouteParams,
} from './types';

@@ -85,0 +86,0 @@ export declare const noop: () => void;

@@ -33,1 +33,14 @@ import { phones } from './phoneRegExp';

| Float64Array;
export type ExtractRouteParams<S extends string> = string extends S
? Record<string, string>
: S extends `${infer P}?${infer _Q}`
? ExtractRouteParams<P>
: S extends `${infer _S}:${infer P}/${infer Rest}`
? {
[K in P | keyof ExtractRouteParams<Rest>]: string;
}
: S extends `${infer _Start}:${infer P}`
? {
[K in P]: string;
}
: {};

2

package.json
{
"name": "aidly",
"version": "1.10.0",
"version": "1.11.0",
"description": "Tool library.",

@@ -5,0 +5,0 @@ "sideEffects": false,

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