diff --git a/src/misc/sequentialize.ts b/src/misc/sequentialize.ts index c3e330f7edb..b9501a8ad26 100644 --- a/src/misc/sequentialize.ts +++ b/src/misc/sequentialize.ts @@ -7,6 +7,7 @@ * Results are not cached, once the promise has returned, the next call will result in a fresh call * * WARNING: The decorator's scope is singleton, so using it on transient objects can lead to memory leaks. + * Read more at https://github.com/bitwarden/jslib/pull/7 */ export function sequentialize(cacheKey: (args: any[]) => string) { return (target: any, propertyKey: string | symbol, descriptor: PropertyDescriptor) => {