UNPKG

245 BJavaScriptView Raw
1'use strict';
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.discard = discard;
7function discard() {
8 if (!this.batch) {
9 throw new Error('ERR DISCARD without MULTI');
10 }
11 this.batch = undefined;
12 return 'OK';
13}
\No newline at end of file