UNPKG

@graphql-mesh/utils

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