kopia lustrzana https://github.com/cheeaun/phanpy
6 wiersze
122 B
JavaScript
6 wiersze
122 B
JavaScript
![]() |
import moize from 'moize';
|
||
|
|
||
|
export default function mem(fn, opts = {}) {
|
||
|
return moize(fn, { ...opts, maxSize: 100 });
|
||
|
}
|