11 lines
157 B
JavaScript
11 lines
157 B
JavaScript
|
|
const {
|
|
memoizeWith,
|
|
} = require('ramda');
|
|
|
|
const weakmapId = require('./weakmap-id');
|
|
|
|
const memoize = memoizeWith(weakmapId);
|
|
|
|
module.exports = memoize;
|