New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@deboxsoft/module-core

Package Overview
Dependencies
Maintainers
1
Versions
283
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@deboxsoft/module-core - npm Package Compare versions

Comparing version

to
2.3.1

10

index.js

@@ -7,5 +7,9 @@ 'use strict';

constructor(options = {}) {
super(options.message);
this.code = options.code;
this.notificationType = options.notificationType;
this.instanceOf = options.instanceOf;
}

@@ -629,3 +633,7 @@ }

*/
function debounce(func, wait = 150, immediate = false) {
function debounce(
func,
wait = 150,
immediate = false
) {
let timeout;

@@ -632,0 +640,0 @@ return function () {

4

package.json
{
"name": "@deboxsoft/module-core",
"version": "2.3.0",
"version": "2.3.1",
"license": "SEE LICENSE IN LICENSE",

@@ -59,5 +59,5 @@ "maintainers": [

"bump": "pnpm run build && bump -c \"release core v\"",
"release": "pnpm run bump -- -t \"core-v\" && pnpm publish",
"release": "pnpm run bump -- -t \"core-v\" && pnpm publish --tag lts/1.3",
"release:dev": "git add . && pnpm run bump -- -p prerelease && pnpm publish --tag dev --no-git-checks"
}
}

@@ -0,9 +1,15 @@

declare type NotificationType = "alert" | "warning" | "error" | "info";
declare type Options = {
message?: string;
code?: string;
args?: Record<string, any>;
notificationType?: NotificationType;
instanceOf?: string;
};
export declare class DeboxError extends Error {
code?: string;
notificationType?: NotificationType;
instanceOf?: string;
constructor(options?: Options);
}
export {};

@@ -12,2 +12,2 @@ /**

*/
export declare function debounce(func: Function, wait?: number, immediate?: boolean): () => void;
export declare function debounce(func: Function, wait?: number, immediate?: boolean): (...values: any[]) => void;

Sorry, the diff of this file is not supported yet