memoizee-decorator

1.0.3 • Public • Published

memoizee-decorator

ES7 function decorator wrapper for the memoizee library (https://github.com/medikoo/memoizee).

Based on memoize-decorator (https://github.com/andreypopp/memoize-decorator). Using memoizee enables support for functions with arguments.

Also passes through memoizee options. For functions with parameters with default values, you have to set the length option explicitly, or use the option { length: false }

Usage

import memoize from 'memoizee-decorator';
 
class Foo {
  @memoize
  get bar() {
    console.log('Complicated calculations...');
    return 42;
  }
 
  @memoize({length:1})
  someFunc(num=21) {
    console.log('Complicated calculations...');
    return num;
  }
 
}

Can be used either plain @memoize or with options @memoize({...options})

As with all decorators, you have to use a transpiler. Refer to https://github.com/andreypopp/autobind-decorator#autobind-decorator for prerequisites.

/memoizee-decorator/

    Package Sidebar

    Install

    npm i memoizee-decorator

    Weekly Downloads

    57

    Version

    1.0.3

    License

    MIT

    Last publish

    Collaborators

    • zwigglers