Skip to content

Instantly share code, notes, and snippets.

View ParhamZare's full-sized avatar

ParhamZare ParhamZare

View GitHub Profile
@ParhamZare
ParhamZare / Memoziation.js
Last active June 18, 2023 09:10
Memoziation function
export const memoziation = (
fn,
options = {
cacheName: "",
cacheTime: 60000,
}
) => {
const cache = {};
const { cacheName, cacheTime } = options;
const generateKeyForCache = (args) => {