UNPKG

@silverwind/ioredis-mock

Version:

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

14 lines (10 loc) 352 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.brpoplpushBuffer = brpoplpushBuffer; var _brpoplpush = require("./brpoplpush"); function brpoplpushBuffer(source, destination) { const valP = _brpoplpush.brpoplpush.apply(this, [source, destination]); return valP.then(val => val ? Buffer.from(val) : val); }