UNPKG

@silverwind/ioredis-mock

Version:

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

15 lines (11 loc) 294 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.zrank = zrank; var _zrange = require("./zrange"); function zrank(key, member) { const vals = _zrange.zrange.call(this, key, 0, -1); const idx = vals.indexOf(member); return idx >= 0 ? idx : null; }