ioredis-mock
Version:
This library emulates ioredis by performing all operations in-memory.
20 lines (17 loc) • 391 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var promise = global.Promise;
var promiseContainer = {
get: function get() {
return promise;
},
set: function set(lib) {
if (typeof lib !== 'function') {
throw new Error('Provided Promise must be a function, got ' + lib);
}
promise = lib;
}
};
exports.default = promiseContainer;