🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@vtrbo/utils-tool

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vtrbo/utils-tool - npm Package Compare versions

Comparing version
0.4.1-beta.1
to
0.4.1
+4
-1
dist/index.cjs

@@ -8,5 +8,8 @@ "use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/tool.ts

}
function noop() {
}
exports.notNullish = notNullish; exports.toRawType = toRawType;
exports.noop = noop; exports.notNullish = notNullish; exports.toRawType = toRawType;
type Recordable<T = any> = Record<string, T>;
declare function toRawType(data: any): string;
declare function toRawType(data: unknown): string;
declare function notNullish<T>(v: T | null | undefined): v is NonNullable<T>;
declare function noop(): void;
export { type Recordable, notNullish, toRawType };
export { type Recordable, noop, notNullish, toRawType };
type Recordable<T = any> = Record<string, T>;
declare function toRawType(data: any): string;
declare function toRawType(data: unknown): string;
declare function notNullish<T>(v: T | null | undefined): v is NonNullable<T>;
declare function noop(): void;
export { type Recordable, notNullish, toRawType };
export { type Recordable, noop, notNullish, toRawType };
+3
-0

@@ -8,5 +8,8 @@ // src/tool.ts

}
function noop() {
}
export {
noop,
notNullish,
toRawType
};
{
"name": "@vtrbo/utils-tool",
"type": "module",
"version": "0.4.1-beta.1",
"version": "0.4.1",
"description": "Collection of common JavaScript or TypeScript utils.",

@@ -29,12 +29,5 @@ "author": {

},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/index.d.ts"
]
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [

@@ -41,0 +34,0 @@ "dist"