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

@instructure/debounce

Package Overview
Dependencies
Maintainers
32
Versions
1706
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@instructure/debounce - npm Package Compare versions

Comparing version 10.2.3-snapshot-9 to 10.3.0

2

CHANGELOG.md

@@ -6,3 +6,3 @@ # Change Log

## [10.2.3-snapshot-9](https://github.com/instructure/instructure-ui/compare/v10.2.2...v10.2.3-snapshot-9) (2024-10-01)
# [10.3.0](https://github.com/instructure/instructure-ui/compare/v10.2.2...v10.3.0) (2024-10-03)

@@ -9,0 +9,0 @@ **Note:** Version bump only for package @instructure/debounce

@@ -66,3 +66,3 @@ /*

const leading = !!options.leading;
const maxing = ('maxWait' in options);
const maxing = 'maxWait' in options;
const trailing = 'trailing' in options ? !!options.trailing : true;

@@ -69,0 +69,0 @@ const maxWait = maxing ? Math.max(+!options.maxWait || 0, wait) : 0;

@@ -73,3 +73,3 @@ "use strict";

const leading = !!options.leading;
const maxing = ('maxWait' in options);
const maxing = 'maxWait' in options;
const trailing = 'trailing' in options ? !!options.trailing : true;

@@ -76,0 +76,0 @@ const maxWait = maxing ? Math.max(+!options.maxWait || 0, wait) : 0;

{
"name": "@instructure/debounce",
"version": "10.2.3-snapshot-9",
"version": "10.3.0",
"description": "A debounce util made by Instructure Inc.",

@@ -25,6 +25,6 @@ "author": "Instructure, Inc. Engineering and Product Design",

"devDependencies": {
"@instructure/ui-babel-preset": "10.2.3-snapshot-9"
"@instructure/ui-babel-preset": "10.3.0"
},
"dependencies": {
"@babel/runtime": "^7.24.5"
"@babel/runtime": "^7.25.6"
},

@@ -31,0 +31,0 @@ "publishConfig": {

Sorry, the diff of this file is not supported yet

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