@quenty/throttle 10.12.1 → 10.12.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [10.12.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/throttle@10.12.1...@quenty/throttle@10.12.2) (2026-04-30)
7
+
8
+ **Note:** Version bump only for package @quenty/throttle
9
+
10
+
11
+
12
+
13
+
6
14
  ## [10.12.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/throttle@10.12.0...@quenty/throttle@10.12.1) (2026-04-29)
7
15
 
8
16
  **Note:** Version bump only for package @quenty/throttle
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/throttle",
3
- "version": "10.12.1",
3
+ "version": "10.12.2",
4
4
  "description": "Adds the throttle function to Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -40,5 +40,5 @@
40
40
  "publishConfig": {
41
41
  "access": "public"
42
42
  },
43
- "gitHead": "6801a02bc7e7de951df4b9f65c0efc27b642db70"
43
+ "gitHead": "7672b52f13af6a10df1b189d19d6e2404b5b3e55"
44
44
  }
@@ -8,8 +8,7 @@
8
8
  @interface ThrottleConfig
9
9
  .leading boolean? -- If true, will dispatch immediately after creating this ThrottledFunction.
10
10
  .trailing boolean? -- If true, will dispatch after the timeout with the latest-called args.
11
- .leadingFirstTimeOnly boolean? -- If true, will dispatch immediately after creating this ThrottledFunction, but from then on, will begin the <timeout> window upon manual call
12
- and delay dispatch until <timeout> seconds have passed (with latest-called args).
11
+ .leadingFirstTimeOnly boolean? -- If true, will dispatch immediately after creating this ThrottledFunction, but from then on, will begin the <timeout> window upon manual call and delay dispatch until <timeout> seconds have passed (with latest-called args).
13
12
  @within ThrottledFunction
14
13
  ]=]
15
14
  export type ThrottleConfig = {