- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
16 lines
436 B
JavaScript
16 lines
436 B
JavaScript
var _has = require('./_has.js');
|
|
|
|
// Memoize an expensive function by storing its results.
|
|
function memoize(func, hasher) {
|
|
var memoize = function(key) {
|
|
var cache = memoize.cache;
|
|
var address = '' + (hasher ? hasher.apply(this, arguments) : key);
|
|
if (!_has(cache, address)) cache[address] = func.apply(this, arguments);
|
|
return cache[address];
|
|
};
|
|
memoize.cache = {};
|
|
return memoize;
|
|
}
|
|
|
|
module.exports = memoize;
|