UNPKG

ioredis-mock

Version:

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

9 lines (8 loc) 260 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.hstrlen = hstrlen; function hstrlen(key, field) { return this.data.has(key) && {}.hasOwnProperty.call(this.data.get(key), field) ? this.data.get(key)[field].length : 0; }