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

@travetto/base

Package Overview
Dependencies
Maintainers
1
Versions
357
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@travetto/base - npm Package Compare versions

Comparing version 4.0.2 to 4.0.3

2

package.json
{
"name": "@travetto/base",
"version": "4.0.2",
"version": "4.0.3",
"description": "Environment config and common utilities for travetto applications.",

@@ -5,0 +5,0 @@ "keywords": [

@@ -99,4 +99,11 @@ import crypto from 'node:crypto';

/**
* Non-blocking timeout, that is cancellable
* Blocking timeout
*/
static blockingTimeout(time: number): Promise<void> {
return timers.setTimeout(time, undefined, { ref: false }).catch(() => { });
}
/**
* Non-blocking timeout
*/
static nonBlockingTimeout(time: number): Promise<void> {

@@ -103,0 +110,0 @@ return timers.setTimeout(time, undefined, { ref: false }).catch(() => { });

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