UNPKG

ioredis-mock

Version:

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

16 lines (11 loc) 287 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); exports.psetex = psetex; var _index = require('./index'); function psetex(key, milliseconds, value) { _index.set.call(this, key, value); _index.pexpire.call(this, key, milliseconds); return 'OK'; }