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

@deboxsoft/module-core

Package Overview
Dependencies
Maintainers
1
Versions
281
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 1.7.0-4 to 1.7.0-5

6

index.cjs.js

@@ -272,6 +272,6 @@ 'use strict';

function debounce(func, wait = 150, immediate = false) {
var timeout;
let timeout;
return function() {
var context = this, args = arguments;
clearTimeout(timeout);
const context = this, args = arguments;
timeout && clearTimeout(timeout);
timeout = setTimeout(function() {

@@ -278,0 +278,0 @@ timeout = null;

@@ -245,6 +245,6 @@ import * as changeCase from 'change-case';

function debounce(func, wait = 150, immediate = false) {
var timeout;
let timeout;
return function() {
var context = this, args = arguments;
clearTimeout(timeout);
const context = this, args = arguments;
timeout && clearTimeout(timeout);
timeout = setTimeout(function() {

@@ -251,0 +251,0 @@ timeout = null;

{
"name": "@deboxsoft/module-core",
"version": "1.7.0-4",
"version": "1.7.0-5",
"license": "SEE LICENSE IN LICENSE",

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

@@ -20,2 +20,2 @@ /**

*/
export declare const clamp: (number: number, boundOne: number, boundTwo?: number) => number;
export declare const clamp: (number: number, boundOne: number, boundTwo?: number | undefined) => number;

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

*/
export declare function isString(value: any): boolean;
export declare function isString(value: any): any;
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