You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

nextalys-js-helpers

Package Overview
Dependencies
Maintainers
0
Versions
450
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nextalys-js-helpers - npm Package Compare versions

Comparing version

to
1.0.6

2

dist/global-helpers/global-helpers.d.ts

@@ -7,3 +7,3 @@ export declare class GlobalHelpers {

static BindGlobalMethodSimple(name: string, func: any, prefix?: string, addGuid?: boolean): string;
static BindGlobalMethod(name: string, methodWrapperObject: any): void;
static BindGlobalMethod(name: string, methodWrapperObject: any): string;
static GetGlobalMethod(name: string): any;

@@ -10,0 +10,0 @@ static GetGlobalVariable<T = any>(name: string): T | null;

@@ -41,4 +41,6 @@ "use strict";

}
var methodFullName = this.globalPrefix + 'method_' + name;
// eslint-disable-next-line @typescript-eslint/no-unsafe-call
this.GetGlobalRef()[this.globalPrefix + 'method_' + name] = (methodWrapperObject[name]).bind(methodWrapperObject);
this.GetGlobalRef()[methodFullName] = (methodWrapperObject[name]).bind(methodWrapperObject);
return methodFullName;
};

@@ -45,0 +47,0 @@ GlobalHelpers.GetGlobalMethod = function (name) {

{
"name": "nextalys-js-helpers",
"version": "1.0.5",
"version": "1.0.6",
"description": "Nextalys Javascript Helpers",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

Sorry, the diff of this file is not supported yet