You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

10 lines
243 B

import moize from './mjs';
moize.collectStats();
const memoized = moize((a, b) => a + b, {profileName: 'memoized'});
const result = new Array(10).fill(null).map(() => memoized(1, 2));
console.log(result);
console.log(memoized.getStats());