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

@apify/utilities

Package Overview
Dependencies
Maintainers
10
Versions
101
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@apify/utilities - npm Package Compare versions

Comparing version 1.2.4 to 1.2.5

4

package.json
{
"name": "@apify/utilities",
"version": "1.2.4",
"version": "1.2.5",
"description": "Tools and constants shared across Apify projects.",

@@ -44,3 +44,3 @@ "main": "index.js",

},
"gitHead": "6e418815287ec81600863945c5eebae1bdf33bf8"
"gitHead": "207027995c7852c709694890d7bcbd5bf2a7aa9a"
}

@@ -56,2 +56,5 @@ /*!

export declare function expressErrorHandler(err: Error, req: RequestLike, res: ResponseLike, next: (...a: unknown[]) => unknown): unknown;
export declare type BetterIntervalID = {
_betterClearInterval: () => void;
};
/**

@@ -66,8 +69,4 @@ * Similar to setInterval() but with two important differences:

*/
export declare function betterSetInterval(func: (...a: unknown[]) => unknown, delay: number): {
_betterClearInterval: () => void;
};
export declare function betterClearInterval(intervalID: {
_betterClearInterval: () => void;
}): void;
export declare function betterSetInterval(func: (a: (...args: unknown[]) => unknown) => void, delay: number): BetterIntervalID;
export declare function betterClearInterval(intervalID: BetterIntervalID): void;
/**

@@ -74,0 +73,0 @@ * Escapes a string so that it can be used in regular expression (e.g. converts "myfile.*" to "myfile\\.\\*").

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