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

@saulx/utils

Package Overview
Dependencies
Maintainers
1
Versions
67
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@saulx/utils - npm Package Compare versions

Comparing version 2.2.0 to 2.2.1

4

dist/retry.d.ts

@@ -9,4 +9,4 @@ /**

export default function retry<T>(promiseFn: (...args: any[]) => Promise<T>, opts: {
timeout: number;
maxRetries: number;
timeout?: number;
maxRetries?: number;
}, ...args: any[]): Promise<T>;

@@ -10,3 +10,3 @@ "use strict";

*/
async function retry(promiseFn, opts, ...args) {
function retry(promiseFn, opts, ...args) {
return new Promise((resolve, reject) => {

@@ -13,0 +13,0 @@ const { timeout = 100, maxRetries = -1 } = opts;

{
"name": "@saulx/utils",
"main": "./dist/index.js",
"version": "2.2.0",
"version": "2.2.1",
"scripts": {

@@ -6,0 +6,0 @@ "build": "tsc",

Sorry, the diff of this file is not supported yet

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