(...args: any)
| 6 | const FLUSH_DB_KEY = '__flush_db__'; |
| 7 | |
| 8 | function debug(...args: any) { |
| 9 | const message = ['RedisCacheAdapter: ' + arguments[0]].concat(args.slice(1, args.length)); |
| 10 | logger.debug.apply(logger, message); |
| 11 | } |
| 12 | |
| 13 | const isValidTTL = ttl => typeof ttl === 'number' && ttl > 0; |
| 14 |