mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-21 08:24:36 +03:00
5 lines
122 B
JavaScript
5 lines
122 B
JavaScript
import mem from './mem';
|
|
|
|
export default function pmem(fn, opts = {}) {
|
|
return mem(fn, { isPromise: true, ...opts });
|
|
}
|