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.4 to 4.0.5

6

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

@@ -27,3 +27,3 @@ "keywords": [

"dependencies": {
"@travetto/manifest": "^4.0.2",
"@travetto/manifest": "^4.0.3",
"@types/debug": "^4.1.12",

@@ -34,3 +34,3 @@ "@types/node": "^20.11.25",

"peerDependencies": {
"@travetto/transformer": "^4.0.3"
"@travetto/transformer": "^4.0.4"
},

@@ -37,0 +37,0 @@ "peerDependenciesMeta": {

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

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

@@ -107,6 +107,6 @@ }

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

@@ -113,0 +113,0 @@

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