UNPKG

@silverwind/ioredis-mock

Version:

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

14 lines (10 loc) 277 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.hgetBuffer = hgetBuffer; var _hget = require("./hget"); function hgetBuffer(key, hashKey) { const val = _hget.hget.apply(this, [key, hashKey]); return val ? Buffer.from(val) : val; }