Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More

@abtnode/util

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@abtnode/util

ArcBlock's JavaScript utility

  • 1.16.33-beta-20241112-122339-e39fa9e7
  • npm
  • Socket score

Version published
Weekly downloads
2.2K
increased by4.8%
Maintainers
0
Weekly downloads
 
Created

ArcBlock's JavaScript utility

Usage

For example:

const tryWithTimeout = require('@abtnode/util/lib/try-with-timeout');
try {
  await tryWithTimeout(() => new Promise((resolve) => setTimeout(() => resolve(true), 60)), 50);
} catch (err) {
  expect(err).toBeTruthy();
  expect(err.message).toContain('Operation timed out after 50 ms');
}

FAQs

Package last updated on 12 Nov 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts