Pacote
    Preparing search index...

    Function memoize

    • Type Parameters

      • A extends any[]
      • K
      • V

      Parameters

      • cacheKeyFn: Fn<A, K>

        A function that generates a string key for cached results. This function takes the same arguments as the function to memoize.

      • fn: Fn<A, V>

        The function to memoize.

      • options: Options = {}

        Memoization options.

      Returns MemoizedFn<A, V>

      Version of the function that caches results.

      import { memoize } from '@pacote/memoize'

      const randomFunction = (prefix: string) => `${prefix}${Math.random()}`

      const memoizedFunction = memoize((prefix) => `key_${prefix}`, randomFunction)

      memoizedFunction('foo') // 'foo' followed by randomly-generated number.
      memoizedFunction('foo') // Same result as previous call with 'foo'.

      memoizedFunction('bar') // 'bar' followed by randomly-generated number.
      memoizedFunction('bar') // Same result as previous call with 'bar'.