UNPKG

ioredis-mock

Version:

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

13 lines (12 loc) 245 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.discard = discard; function discard() { if (!this.batch) { throw new Error('ERR DISCARD without MULTI'); } this.batch = undefined; return 'OK'; }