🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@uoctamika/libraryjs

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@uoctamika/libraryjs - npm Package Compare versions

Comparing version
1.2.2
to
1.2.3
+2
-0
dist/cjs/stdio/printf.js

@@ -33,3 +33,5 @@ "use strict";

case 'j': return JSON.stringify(arg);
/* v8 ignore next */
case '%': return '%';
/* v8 ignore next */
default: return String(arg);

@@ -36,0 +38,0 @@ }

@@ -30,3 +30,5 @@ import { inspect } from 'util';

case 'j': return JSON.stringify(arg);
/* v8 ignore next */
case '%': return '%';
/* v8 ignore next */
default: return String(arg);

@@ -33,0 +35,0 @@ }

+9
-3
{
"name": "@uoctamika/libraryjs",
"version": "1.2.2",
"version": "1.2.3",
"description": " A lightweight JavaScript & TypeScript utility library - just import and use. No configuration needed, functions are ready to use",

@@ -23,3 +23,7 @@ "main": "./dist/cjs/index.js",

"rename:mjs": "find dist/esm -name '*.js' -exec sh -c 'mv \"$0\" \"${0%.js}.mjs\"' {} \\; && find dist/esm -name '*.mjs' -exec sed -i \"s/from '\\\\(.*\\\\)\\\\.js'/from '\\\\1.mjs'/g\" {} \\;",
"clean": "rm -rf dist"
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:coverageWatch": "vitest --coverage"
},

@@ -54,3 +58,5 @@ "repository": {

"@types/node": "^25.9.1",
"typescript": "^6.0.3"
"@vitest/coverage-v8": "^4.1.8",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},

@@ -57,0 +63,0 @@ "publishConfig": {