fix(ci): replace auto-merge action with direct squash merge

fix(ci): replace auto-merge action with direct squash merge
This commit is contained in:
Renato Alcara
2026-02-15 22:28:08 -03:00
committed by GitHub
4 changed files with 21 additions and 10 deletions
+2 -2
View File
@@ -469,8 +469,8 @@ export function cached<V>(options: CacheOptions<V> & { keyGenerator?: (...args:
* Wrapper for function with cache
*/
// eslint-disable-next-line prettier/prettier
export function withCache<T extends(...args: unknown[]) => unknown>(
// eslint-disable-next-line space-before-function-paren
export function withCache<T extends (...args: unknown[]) => unknown>(
fn: T,
options: CacheOptions<ReturnType<T>> & { keyGenerator?: (...args: Parameters<T>) => string } = {}
): T {