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

@alttiri/util-node-js

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@alttiri/util-node-js - npm Package Compare versions

Comparing version 2.0.9 to 2.0.10-20240530

6

package.json
{
"name": "@alttiri/util-node-js",
"version": "2.0.9",
"version": "2.0.10-20240530",
"description": "Some Node.js util functions for personal use",

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

"scripts": {
"compile": "tsc --build",
"compile": "tsc --build",
"compile-watch": "tsc --build --watch",
"clean": "tsc --build --clean",
"clean": "tsc --build --clean",
"-": "",

@@ -37,0 +37,0 @@ "publish-npm": "npm publish --registry=https://registry.npmjs.org",

@@ -35,4 +35,4 @@ import { ANSI_BLUE, ANSI_GRAY, ANSI_GREEN_BOLD, ANSI_RED_BOLD } from "./console-colors.js";

}
const pad1 = " ".repeat(2 - this.num.toString().length);
const pad2 = " ".repeat(3 - lineNum.toString().length);
const pad1 = " ".repeat(Math.max(0, 2 - this.num.toString().length));
const pad2 = " ".repeat(Math.max(0, 3 - lineNum.toString().length));
if (expect === undefined) {

@@ -39,0 +39,0 @@ console.log(ANSI_BLUE(this.num), pad1, ANSI_GRAY(lineNum), pad2, result, name);

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