UNPKG

graphql-yoga

Version:

<div align="center"><img src="./website/public/cover.png" width="720" /></div>

21 lines (20 loc) 782 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.createLRUCache = void 0; exports._createLRUCache = _createLRUCache; /* eslint-disable @typescript-eslint/no-empty-object-type */ const lru_cache_1 = require("lru-cache"); /** * @deprecated In the next major, `createLRUCache` will be renamed to `_createLRUCache`, * and the current `createLRUCache` will be removed. */ exports.createLRUCache = _createLRUCache; const DEFAULT_MAX = 1024; const DEFAULT_TTL = 3_600_000; /** * @internal This is an internal utility, and you should use it with your own risk. * This utility can have breaking changes in the future. */ function _createLRUCache({ max = DEFAULT_MAX, ttl = DEFAULT_TTL, } = {}) { return new lru_cache_1.LRUCache({ max, ttl }); }