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

@aomex/internal-tools

Package Overview
Dependencies
Maintainers
0
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aomex/internal-tools - npm Package Compare versions

Comparing version 3.1.1 to 3.2.0

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

# [3.2.0](https://github.com/aomex/aomex/compare/v3.1.1...v3.2.0) (2024-09-17)
**Note:** Version bump only for package @aomex/internal-tools
## [3.1.1](https://github.com/aomex/aomex/compare/v3.1.0...v3.1.1) (2024-09-13)

@@ -8,0 +16,0 @@

7

dist/index.js

@@ -7,5 +7,6 @@ // src/to-array.ts

// src/sleep.ts
var sleep = (durationMS) => durationMS <= 0 ? Promise.resolve(void 0) : new Promise((resolve) => {
setTimeout(resolve, durationMS);
});
import timers from "node:timers/promises";
var sleep = (durationMS) => {
return durationMS <= 0 ? Promise.resolve(void 0) : timers.setTimeout(durationMS);
};

@@ -12,0 +13,0 @@ // src/index.ts

{
"name": "@aomex/internal-tools",
"version": "3.1.1",
"version": "3.2.0",
"description": "aomex内部实用工具",

@@ -5,0 +5,0 @@ "type": "module",

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