UNPKG

ioredis-mock

Version:

This library emulates ioredis by performing all operations in-memory.

9 lines (8 loc) 177 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.get = get; function get(key) { return this.data.has(key) ? this.data.get(key) : null; }