Socket
Socket
Sign inDemoInstall

escalade

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

escalade - npm Package Compare versions

Comparing version 3.0.1 to 3.0.2

4

index.d.ts
declare module 'escalade' {
type Promisable<T> = T | Promise<T>;
export type Callback = (directory: string, files: stirng[]) => Promisable<string | false | void>;
export type Callback = (directory: string, files: string[]) => Promisable<string | false | void>;
function escalade(directory: string, callback: Callback): Promise<string | void>;

@@ -9,5 +9,5 @@ export = escalade;

declare module 'escalade/sync' {
export type Callback = (directory: string, files: stirng[]) => string | false | void;
export type Callback = (directory: string, files: string[]) => string | false | void;
function escalade(directory: string, callback: Callback): string | void;
export = escalade;
}
{
"name": "escalade",
"version": "3.0.1",
"version": "3.0.2",
"repository": "lukeed/escalade",

@@ -5,0 +5,0 @@ "description": "A tiny (183B to 210B) and fast utility to ascend parent directories",

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