UNPKG

@graphql-mesh/utils

Version:
9 lines (8 loc) 271 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.createLruCache = void 0; const tiny_lru_1 = require("tiny-lru"); function createLruCache(max, ttl) { return (0, tiny_lru_1.lru)(max, ttl); } exports.createLruCache = createLruCache;