0.1.0 • Published 3 years ago

@wendellhu/memoize v0.1.0

Weekly downloads
-
License
MIT
Repository
-
Last release
3 years ago

memoize

Use memoize pattern in your TypeScript code.

Installation

npm install @wendellhu/memoize

# or yarn
yarn add @wendellhu/memoize

Usage

import { memoizeFunc } from '@wendellhu/memoize';

For function:

const memoizedGetter = memoizeFunc((a, b) => {
  // the function should not depend on values outside of its scope
  return someHeavyEvaluation(a, b);
});

For class:

import { memoize } from '@wendellhu/memoize';

// on getter (& setter)
class A {
  @memoize()
  public get a() {
    return someHeavyEvaluation();
  }

  public set value(val) {
    // re-evaluate when the setter is invoked
  }
}

// on method
class B {
  @memoize()
  public getFunction(param) {
    // re-evaluate when arguments change
    return someHeavyEvaluation(param);
  }
}

// or with key
class C {
  @memoize((param) => toKey(param))
  public getFunction(param, anotherParam) {
    // re-evaluate when arguments change, and cache by groups according to `key`
    return someHeavyEvaluation(param, anotherParam);
  }
}