Merge dependabot/npm_and_yarn/eslint-config-love-44.0.0 into combined-prs-branch
[poolifier.git] / src / utils.ts
index f77d84a97e6694d2c22cbdc0dd0a5bb97ab69f89..88562ca3531f9acbb446414075366a4b50ba1ce4 100644 (file)
@@ -201,7 +201,7 @@ export const max = (...args: number[]): number =>
  * @internal
  */
 // eslint-disable-next-line @typescript-eslint/no-explicit-any
-export const once = <T, A extends any[], R>(
+export const once = <A extends any[], R, T>(
   fn: (...args: A) => R,
   context: T
 ): ((...args: A) => R) => {