1.0.1 • Published 2 years ago

@jswork/next-memo v1.0.1

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

next-memo

Memoize for next.

version license size download

installation

npm install -S @jswork/next-memo

usage

import '@jswork/next-memo';

const fibonacci = (n) => {
  return n < 2 ? n : fibonacci(n - 1) + fibonacci(n - 2);
};
const memoized = nx.memoize(
  fibonacci
);

// First time: calc
const rs1 = memoized(number);
// Next time: From Cache
const rs2 = memoized(number);

license

Code released under the MIT license.